~ubuntu-branches/ubuntu/utopic/mariadb-5.5/utopic-proposed

« back to all changes in this revision

Viewing changes to mysql-test/include/install_semisync.inc

  • Committer: Package Import Robot
  • Author(s): Otto Kekäläinen
  • Date: 2014-08-27 21:12:36 UTC
  • mfrom: (2.1.6 sid)
  • Revision ID: package-import@ubuntu.com-20140827211236-se41hwfe4xy0hpef
Tags: 5.5.39-2
* d/control: Removed Provides: libmysqlclient-dev (Closes: #759309)
* d/control: Removed Provides: libmysqld-dev with same motivation
* Re-introduced tha HPPA build patch as the upstream fix wasn't complete
* Fixed all kFreeBSD build and test suite issues
* Added Italian translation (Closes: #759813)

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
if ($value == No such row)
15
15
{
16
16
    SET sql_log_bin = 0;
17
 
    eval INSTALL PLUGIN rpl_semi_sync_master SONAME '$SEMISYNC_MASTER_PLUGIN';
 
17
    install plugin rpl_semi_sync_master soname 'semisync_master';
18
18
    SET GLOBAL rpl_semi_sync_master_enabled = 1;
19
19
    SET sql_log_bin = 1;
20
20
}
28
28
if ($value == No such row)
29
29
{
30
30
    SET sql_log_bin = 0;
31
 
    eval INSTALL PLUGIN rpl_semi_sync_slave SONAME '$SEMISYNC_SLAVE_PLUGIN';
 
31
    install plugin rpl_semi_sync_slave soname 'semisync_slave';
32
32
    SET GLOBAL rpl_semi_sync_slave_enabled = 1;
33
33
    SET sql_log_bin = 1;
34
34
}