This repository was archived by the owner on Apr 9, 2021. It is now read-only.
File tree 6 files changed +14
-9
lines changed
6 files changed +14
-9
lines changed Original file line number Diff line number Diff line change
1
+ 3.2.10 03-May-2017
2
+ - Fixed error in --custom_mysqld handling
1
3
3.2.09 01-May-2017
2
4
- Merged Guriandoro's change to check port numbers in change_ports
3
5
- Added change directory command to change_ports
Original file line number Diff line number Diff line change 161
161
die " # Can't get MySQL version from mysql_config\n " ;
162
162
}
163
163
164
- $msb -> {options }{custom_mysqld } = ' ' ;
165
164
if ($msb -> {options }{expose_dd_tables })
166
165
{
167
166
my $mysql_version = $msb -> {options }{detected_mysql_version };
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ our @EXPORT_OK= qw( is_port_open
30
30
split_version
31
31
) ;
32
32
33
- our $VERSION =q{ 3.2.09 } ;
33
+ our $VERSION =q{ 3.2.10 } ;
34
34
our $DEBUG ;
35
35
36
36
BEGIN {
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ package MySQL::Sandbox::Recipes;
3
3
use strict;
4
4
use warnings;
5
5
6
- our $VERSION =q{ 3.2.09 } ;
6
+ our $VERSION =q{ 3.2.10 } ;
7
7
8
8
1;
9
9
__END__
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ our @EXPORT_OK = qw(
17
17
) ;
18
18
our @EXPORT = @EXPORT_OK ;
19
19
20
- our $VERSION =q{ 3.2.09 } ;
20
+ our $VERSION =q{ 3.2.10 } ;
21
21
22
22
our @MANIFEST = (
23
23
' clear.sh' ,
@@ -448,8 +448,8 @@ my %parse_options_low_level_make_sandbox = (
448
448
]
449
449
},
450
450
custom_mysqld => {
451
- value => $ENV {' CUSTOM_MYSQLD' },
452
- parse => ' custom_mysqld' ,
451
+ value => $ENV {' CUSTOM_MYSQLD' } || ' ' ,
452
+ parse => ' custom_mysqld=s ' ,
453
453
so => 198,
454
454
export => 1,
455
455
help => [
Original file line number Diff line number Diff line change @@ -13,8 +13,10 @@ sub test_run
13
13
{
14
14
my ($tests ) = @_ ;
15
15
ok_exec({
16
- command => " make_sandbox $TEST_VERSION -- --no_confirm --sandbox_directory=$install_dir --expose_dd_tables "
17
- . " --sandbox_port=$install_port " ,
16
+ command => " make_sandbox $TEST_VERSION -- "
17
+ . " --no_confirm --sandbox_directory=$install_dir "
18
+ . " --expose_dd_tables "
19
+ . " --sandbox_port=$install_port " ,
18
20
expected => ' sandbox server started' ,
19
21
msg => ' sandbox server started' ,
20
22
});
@@ -52,7 +54,9 @@ sub test_run
52
54
msg => ' table "mysql.tables" is readable'
53
55
},
54
56
{
55
- query => " select count(*) from mysql.tables where name='dd_hidden_tables' and schema_id = (select id from mysql.schemata where name='sys')" ,
57
+ query => " select count(*) from mysql.tables "
58
+ . " where name='dd_hidden_tables' "
59
+ . " and schema_id = (select id from mysql.schemata where name='sys')" ,
56
60
expected => ' 1' ,
57
61
msg => ' table "sys.dd_hidden_tables" exists'
58
62
}
You can’t perform that action at this time.
0 commit comments