You can browse the source code for the development focus branch or get a copy of the branch using the command:
bzr branch lp:mysql-server

MySQL Server has 6 active reviews. See all merge proposals.

MySQL Server has 77 active branches owned by 45 people and 2 teams. There were 0 commits in the last month.

Bazaar branches

Name Status Last Modified Last Commit
lp:mysql-server
Series: 5.7
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-server/5.6
Series: 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/5.5
Series: 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.1
Series: 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/cluster-7.3
Series: 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:mysql-server/cluster-7.2
Series: 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.1
Series: 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.0
Series: 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:~kevincrane-p/mysql-server/5.6 1 Development 2015-02-24 19:04:13 UTC
5091. Merge MySQL 5.6.22

Author: Kevin Crane
Revision Date: 2015-02-24 19:04:13 UTC

Merge MySQL 5.6.22

lp:~kevincrane-p/mysql-server/5.5 1 Development 2015-02-05 22:44:20 UTC
4047. Merge MySQL 5.5.41

Author: Kevin Crane
Revision Date: 2015-02-05 22:44:20 UTC

Merge MySQL 5.5.41

lp:~xpan/mysql-server/5.6 1 Development 2014-08-13 20:19:59 UTC
5089. Merge MySQL 5.6.20

Author: <email address hidden>
Revision Date: 2014-08-13 20:19:59 UTC

Merge MySQL 5.6.20

lp:~inaam-rana/mysql-server/5.5 1 Development 2014-08-06 21:14:55 UTC
4045. Merge MySQL 5.5.39

Author: Inaam Rana
Revision Date: 2014-08-06 21:14:55 UTC

Merge MySQL 5.5.39

lp:~liangg-guo/mysql-server/5.5 1 Development 2014-03-07 19:50:03 UTC
4043. Merge MySQL 5.5.36

Author: Liang Guo
Revision Date: 2014-03-07 19:50:03 UTC

Merge MySQL 5.5.36

lp:~dveeden/mysql-server/binlogtimestamp 0 Experimental 2014-02-15 15:28:17 UTC This branch is empty.
lp:~inaam-rana/mysql-server/5.6 1 Development 2014-02-10 17:36:37 UTC
5087. Merge MySQL 5.6.16

Author: Inaam Rana
Revision Date: 2014-02-10 17:36:37 UTC

Merge MySQL 5.6.16

lp:~gaul/mysql-server/mysqld-safe-file (Has a merge proposal) 1 Development 2014-01-23 23:26:47 UTC
6865. Cooperate with log rotation when logg...

Author: Andrew Gaul
Revision Date: 2014-01-23 23:25:23 UTC

Cooperate with log rotation when logging to a file.

lp:~gaul/mysql-server/general-log-help-text (Has a merge proposal) 1 Development 2014-01-16 23:11:36 UTC
6865. Add missing whitespace to --general-l...

Author: Andrew Gaul
Revision Date: 2014-01-16 23:10:38 UTC

Add missing whitespace to --general-log help text

lp:~liangg-guo/mysql-server/5.6 1 Development 2013-10-03 17:48:57 UTC
5086. Merge MySQL 5.6.13

Author: Liang Guo
Revision Date: 2013-10-03 17:48:57 UTC

Merge MySQL 5.6.13

lp:~vlad-lesin/mysql-server/mysql-twitter-original 1 Development 2013-09-17 15:37:08 UTC This branch is empty.
lp:~vlad-lesin/mysql-server/mysql-twitter-issue-34412-ipv6-sql-functions 1 Development 2013-09-17 14:40:28 UTC This branch is empty.
lp:~laurynas-biveinis/mysql-server/5.5.31-CVE-2012-5615-2012-5627-5.5 2 Mature 2013-05-26 07:13:12 UTC
4250. Port CVE-2012-5615 and CVE-2012-5627 ...

Author: Laurynas Biveinis
Revision Date: 2013-05-14 08:13:32 UTC

Port CVE-2012-5615 and CVE-2012-5627 patches from Percona Server 5.5

lp:~laurynas-biveinis/mysql-server/5.6.11-CVE-2012-5615-CVE-2012-5627 2 Mature 2013-05-26 07:12:58 UTC
4869.  Port CVE-2012-5615 and CVE-2012-5627...

Author: Laurynas Biveinis
Revision Date: 2013-05-14 09:28:32 UTC

 Port CVE-2012-5615 and CVE-2012-5627 from Percona Server 5.6

lp:~dveeden/mysql-server/ignore-db-bug 1 Development 2013-05-24 21:18:40 UTC
5217. Add test for --ignore-db-dir option

Author: Daniël van Eeden
Revision Date: 2013-05-24 21:15:05 UTC

Add test for --ignore-db-dir option

lp:~kostja/mysql-server/userlock 1 Development 2013-05-22 09:21:18 UTC
4809. Update failing performance schema tes...

Author: Kostja Osipov
Revision Date: 2013-05-22 09:21:18 UTC

Update failing performance schema tests. Remove mention of LOCK_user_locks,
which is gone (no longer exists).

lp:~tmathiasen/mysql-server/mysql-5.5-fio 1 Development 2013-04-30 15:12:38 UTC
4149. Fusion-io transparent atomics support

Author: root
Revision Date: 2013-04-30 13:50:14 UTC

Fusion-io transparent atomics support

lp:~wlad-montyprogram/mysql-server/5.5-fio 1 Development 2013-04-09 15:34:48 UTC This branch has not been pushed to yet.
lp:~davi/mysql-server/5.5 1 Development 2013-02-06 21:34:47 UTC
4037. Merge MySQL 5.5.30.

Author: Davi Arnaut
Revision Date: 2013-02-06 21:34:47 UTC

Merge MySQL 5.5.30.

lp:~sergei.glushchenko/mysql-server/56-expand_fast_index_creation (Has a merge proposal) 1 Development 2012-12-14 14:51:37 UTC
3931. Stronger assertion. Check that mdl_ti...

Author: Sergei Glushchenko
Revision Date: 2012-12-14 14:51:37 UTC

Stronger assertion. Check that mdl_ticket == 0 only for temporary table

lp:~vlad-lesin/mysql-server/5.1.61-thread-safe-process-list 1 Development 2012-12-05 12:56:24 UTC
3624. Process list thread-safe issues possi...

Author: Vlad Lesin
Revision Date: 2012-12-05 12:55:01 UTC

Process list thread-safe issues possible fixes.

lp:~sergei.glushchenko/mysql-server/efic 1 Development 2012-11-08 07:13:46 UTC This branch has not been pushed to yet.
lp:~sergei.glushchenko/mysql-server/expand_fast_index_creation (Has a merge proposal) 1 Development 2012-06-29 15:57:32 UTC
3733. port expand_fast_index_creation patch

Author: Sergei Glushchenko
Revision Date: 2012-06-29 15:57:32 UTC

port expand_fast_index_creation patch

lp:~hartmut-php/mysql-server/cluster-7.2-showdbs 1 Development 2012-06-07 19:43:28 UTC
3874. Added a ndb_show_databases tool to pr...

Author: Hartmut Holzgraefe
Revision Date: 2012-06-07 19:07:56 UTC

Added a ndb_show_databases tool to print all databases known to cluster

This can be used to issue CREATE DATABASE IF NOT EXISTS statements
for all database to work around database creation auto detection
failures (e.g. when restoring metadata with ndb_restore, see
http://bugs.mysql.com/bug.php?id=46064 )

lp:~xiangzi011/mysql-server/xiangyu 1 Development 2012-02-27 05:02:26 UTC This branch has not been pushed to yet.
lp:~santiagoesco/mysql-server/santiagoesco 1 Development 2012-02-26 17:54:05 UTC This branch has not been pushed to yet.
lp:~weyrick/mysql-server/34014-cs-complete 1 Development 2012-01-18 15:17:25 UTC
3701. Remove debug text

Author: Shannon Weyrick
Revision Date: 2012-01-18 15:17:25 UTC

Remove debug text

lp:~bachra5/mysql-server/06925947 1 Development 2011-11-25 15:50:14 UTC This branch has not been pushed to yet.
lp:~knielsen/mysql-server/bug62540-A 1 Development 2011-10-26 12:16:33 UTC This branch has not been scanned yet.
lp:~orczhou/mysql-server/ESR 2 Mature 2011-09-15 05:27:15 UTC
3493. delete some extra space in the result...

Author: orczhou
Revision Date: 2011-09-15 05:27:15 UTC

delete some extra space in the result file

lp:~dveeden/mysql-server/mysql-docs-updated 1 Development 2011-09-13 14:46:22 UTC
3366. Add mysql.ufw for the Uncomplicated F...

Author: Daniël van Eeden
Revision Date: 2011-09-13 14:46:22 UTC

Add mysql.ufw for the Uncomplicated FireWall

lp:~dveeden/mysql-server/mysql-server-dveeden 1 Development 2011-08-31 10:25:56 UTC
3365. merge from upstream

Author: Daniël van Eeden
Revision Date: 2011-08-31 10:25:56 UTC

merge from upstream

lp:~maher28soft/mysql-server/mysql-5.1-maher 1 Development 2011-06-14 10:21:16 UTC This branch has not been pushed to yet.
lp:~dveeden/mysql-server/mysql-5.5-bug61038 (Has a merge proposal) 1 Development 2011-05-03 11:57:35 UTC
3454. Change variables from log-err to erro...

Author: Daniël van Eeden
Revision Date: 2011-05-03 11:52:19 UTC

Change variables from log-err to error-log. Suggest the use of the
mysqld section instead of safe_mysqld. Also change safe_mysqld to
mysqld_safe.

lp:~dveeden/mysql-server/mysql-5.5-bug60878 (Has a merge proposal) 1 Development 2011-04-18 11:14:33 UTC
3452. Fix typo

Author: Daniël van Eeden
Revision Date: 2011-04-18 11:14:33 UTC

Fix typo

lp:~posulliv/mysql-server/query-rewrite (Has a merge proposal) 1 Development 2010-10-15 16:12:39 UTC
3205. Forgot new method when embedded serve...

Author: Padraig O'Sullivan
Revision Date: 2010-10-15 16:12:39 UTC

Forgot new method when embedded server is defined.

lp:~kristofer-pettersson-sun/mysql-server/mysql-replication-listener 0 Experimental 2010-04-29 12:03:56 UTC This branch has not been mirrored yet.
lp:~hezx/mysql-server/mysql-5.1-semisync 1 Development 2010-03-05 02:35:49 UTC
3129. Auto merge from 5.1 main

Author: He Zhenxing
Revision Date: 2010-03-05 02:35:49 UTC

Auto merge from 5.1 main

lp:~253947468-qq/mysql-server/phpup 1 Development 2010-02-01 02:13:27 UTC This branch has not been mirrored yet.
lp:~long-launchpad/mysql-server/6.0-perf-team-dev 1 Development 2010-01-08 00:24:46 UTC
2818. Priority Scheduler that has some leak...

Author: Kelly Long
Revision Date: 2009-05-04 16:57:10 UTC

Priority Scheduler that has some leakage to allow lower priority threads
 to make some progress.

lp:~long-launchpad/mysql-server/6.0-perf-team 1 Development 2010-01-08 00:23:18 UTC
2811. Kelly - Merge of mysql-6.0 into mysql...

Author: Kelly Long
Revision Date: 2009-04-15 22:31:08 UTC

Kelly - Merge of mysql-6.0 into mysql-6.0-performance

lp:~rsilk/mysql-server/pluggable-auth 0 Experimental 2010-01-03 06:45:49 UTC
2784. Include missing changes from last pul...

Author: rsilk
Revision Date: 2010-01-03 06:45:49 UTC

Include missing changes from last pullup.

lp:~wdlzgjh/mysql-server/gaogao 1 Development 2009-12-21 07:50:51 UTC This branch has not been pushed to yet.
lp:~sergefp/mysql-server/mysql-6.0-wl4800 1 Development 2009-11-23 13:41:09 UTC
2837. the content of the optimizer trace on...

Author: Guilhem Bichot
Revision Date: 2009-11-23 13:41:09 UTC

the content of the optimizer trace on the example has changed after the merge.

lp:~florin-diaconeasa/mysql-server/objects 0 Experimental 2009-11-01 20:58:02 UTC This branch has not been pushed to yet.
lp:~k16041/mysql-server/Empire 1 Development 2009-10-20 11:21:10 UTC This branch has not been pushed to yet.
lp:~jtolmer/mysql-server/global-trx-ids 2 Mature 2009-08-10 16:33:06 UTC
2650. Fix group_id load/recovery when not r...

Author: Justin Tolmer
Revision Date: 2009-08-10 16:33:06 UTC

Fix group_id load/recovery when not running any transactional storage engines.

lp:~scut-tang/mysql-server/mysql-6.0-infoschema 1 Development 2009-07-06 02:05:30 UTC This branch has not been pushed to yet.
lp:~igorb-seattle/mysql-server/mysql-azalea-wl4777 1 Development 2009-06-30 07:37:52 UTC
2832. WL #4777: Support for persistent syst...

Author: Igor Babaev
Revision Date: 2009-06-28 11:47:41 UTC

WL #4777: Support for persistent system tables to store basic statistics.
The main patch.

lp:~sergefp/mysql-server/mysql-6.0-opt 1 Development 2009-06-02 21:58:56 UTC
2740. Fixed bug #45092. When the descriptor...

Author: Igor Babaev
Revision Date: 2009-06-02 21:58:56 UTC

Fixed bug #45092.
When the descriptors of the data fields stored in a join buffer
are created first the descriptors of the the fields used in
building access keys are constructed. The construction is done
with a call of the function add_table_data_fields_to_join_cache.
One of the parameters of this function, namely field_set, specifies
for what fields the descriptors are to be constructed. This function
is called once again for the remaining fields.
As the function adds new elements to the array of the field
descriptors it has to save the number of the descriptors that
has been already built in order to be able continue adding them
later. The same is true for the array of pointers to the field
descriptors that is created for blob fields.
However the length of this array was not been saved. As a result,
when the remaining blob fields were processed the pointers to
their field descriptors overwrote the pointers to the descriptors
of the blob fields used to build the access keys.

lp:~hezx/mysql-server/semi-sync-replication 1 Development 2009-04-29 09:25:18 UTC
9. BUG#44058 Possible semi-sync replicat...

Author: He Zhenxing
Revision Date: 2009-04-29 09:25:18 UTC

BUG#44058 Possible semi-sync replication bugs (component part)

Semi-sync master component does not set the thread's proc info,
nor set the mysys_var->current_cond/mutex, which made KILL not
able to awake the thread that was waiting for the ACK, and didn't
know what the thread was waiting for.

This patch fixed the problem by calling enter_cond and exit_cond
accordingly in semi-sync master component before and after waiting
for ACK from slave.

lp:~sergefp/mysql-server/mysql-6.0-opt-subqueries 1 Development 2009-04-14 18:28:03 UTC
2729. Merge mysql-6.0 -> mysql-6.0-opt

Author: Sergey Petrunia
Revision Date: 2009-03-20 13:47:48 UTC

Merge mysql-6.0 -> mysql-6.0-opt

lp:~sergefp/mysql-server/mysql-6.0-explain-conds 1 Development 2009-03-20 17:42:21 UTC
2693. WL#4520: Fix bad merge (kdiff3 messed...

Author: Sergey Petrunia
Revision Date: 2009-03-20 17:42:21 UTC

WL#4520: Fix bad merge (kdiff3 messed up charsets)

lp:~minhtoon/mysql-server/mysql5.0 1 Development 2009-02-24 03:43:53 UTC This branch has not been pushed to yet.
lp:~minhtoon/mysql-server/min 1 Development 2009-02-24 03:27:14 UTC This branch has not been pushed to yet.
lp:~ubuntu-core-dev/mysql-server/pkg-debian-5.1 1 Development 2009-02-11 16:33:12 UTC This branch has not been pushed to yet.
lp:~johannes-s/mysql-server/5.1-parantheses 1 Development 2009-01-07 11:37:13 UTC
2706. Make gcc happy by using paranthesis

Author: Johannes Schlüter
Revision Date: 2009-01-06 13:09:31 UTC

Make gcc happy by using paranthesis

lp:~mordred/mysql-server/5.1-bzr1.6format 1 Development 2008-12-25 21:26:36 UTC This branch has not been pushed to yet.
lp:~mordred/mysql-server/wafflegrid-build-options 1 Development 2008-12-19 19:20:54 UTC
2776. Removed mysql post-commit hooks.

Author: Monty Taylor
Revision Date: 2008-12-19 18:54:05 UTC

Removed mysql post-commit hooks.

lp:~andrey-zhakov/mysql-server/mysql-6.0-wl1075-wl411 0 Experimental 2008-10-23 08:21:47 UTC
2690. Allowed vcol tests to pass when mysql...

Author: Andrey Zhakov
Revision Date: 2008-10-22 06:28:50 UTC

Allowed vcol tests to pass when mysqld is compiled without ssl support.

lp:~prijatelkatadadicka/mysql-server/mysql5.0 1 Development 2008-09-03 20:54:36 UTC This branch has not been pushed to yet.
lp:~danielpvolpato/mysql-server/parallel-mysqldump 1 Development 2008-08-28 16:18:35 UTC
2682. Merge with main tree

Author: Daniel Volpato
Revision Date: 2008-08-28 16:18:14 UTC

Merge with main tree

lp:~sergey-kudriavtsev/mysql-server/mysql-server-rbac 0 Experimental 2008-08-18 18:51:22 UTC
2684. Fixed scripts/mysql_system_tables*.sql

Author: dot_sent
Revision Date: 2008-08-18 18:50:24 UTC

Fixed scripts/mysql_system_tables*.sql

lp:~m.ch/mysql-server/sigar-plugin 0 Experimental 2008-08-16 18:33:11 UTC
16. Updated installation guideline in README

Author: Muslimas Chochlovas
Revision Date: 2008-08-16 18:32:33 UTC

Updated installation guideline in README

lp:~m.ch/mysql-server/mysql-6.0-sigar-plugin 0 Experimental 2008-08-14 16:31:22 UTC
2769. Added new version of sigar plugin (0....

Author: Muslimas Chochlovas
Revision Date: 2008-08-14 15:04:50 UTC

Added new version of sigar plugin (0.5.2): Initial push

lp:~mkindahl/mysql-server/replication-scripting 1 Development 2008-08-11 17:53:21 UTC This branch has not been pushed to yet.
lp:~milos-prodanovic-deactivatedaccount/mysql-server/pluggable-auth 1 Development 2008-07-13 21:51:14 UTC This branch is empty.
lp:~mordred/mysql-server/6.0-ndb 1 Development 2008-06-17 16:04:37 UTC This branch has not been pushed to yet.
lp:~mathiaz/mysql-server/pkg-ubuntu 1 Development 2008-04-03 21:43:52 UTC
644. Drop 56-mysqlhotcopy-invalid-dbtable ...

Author: Mathias Gug
Revision Date: 2008-04-03 21:32:38 UTC

Drop 56-mysqlhotcopy-invalid-dbtable patch: fixed in 5.0.50 according to http://bugs.m/bug.php?id=27694.

177 of 77 results
You can't create new branches for MySQL Server.