Below is the list of changes that have just been committed into a local
5.1 repository of msvensson. When msvensson does a push these changes
will be propagated to the main repository and, within 24 hours after the
push, to the public repository.
For information on how to access the public repository
see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html
ChangeSet@stripped, 2008-04-25 16:09:25+02:00, msvensson@stripped +1 -0
Add "match end of string" marker so that only "cluster_config.xxx" are found
mysql-test/lib/My/ConfigFactory.pm@stripped, 2008-04-25 16:09:23+02:00, msvensson@stripped +3 -3
Add "match end of string" marker so that only "cluster_config.xxx" are found
diff -Nrup a/mysql-test/lib/My/ConfigFactory.pm b/mysql-test/lib/My/ConfigFactory.pm
--- a/mysql-test/lib/My/ConfigFactory.pm 2008-04-25 14:34:14 +02:00
+++ b/mysql-test/lib/My/ConfigFactory.pm 2008-04-25 16:09:23 +02:00
@@ -416,7 +416,7 @@ sub post_fix_mysql_cluster_section {
# Add a [mysl_cluster.<suffix>] section for each
# defined [cluster_config.<suffix>] section
- foreach my $group ( $config->like('cluster_config\.\w*') )
+ foreach my $group ( $config->like('cluster_config\.\w*$') )
{
my @urls;
# Generate ndb_connectstring for this cluster
@@ -497,7 +497,7 @@ sub run_generate_sections_from_cluster_c
my @options= ('ndb_mgmd', 'ndbd',
'mysqld', 'ndbapi');
- foreach my $group ( $config->like('cluster_config\.\w*') ) {
+ foreach my $group ( $config->like('cluster_config\.\w*$') ) {
# Keep track of current index per process type
my %idxes;
@@ -580,7 +580,7 @@ sub new_config {
$self->run_section_rules($config,
- 'cluster_config\.\w*',
+ 'cluster_config\.\w*$',
@cluster_config_rules);
$self->run_generate_sections_from_cluster_config($config);
| Thread |
|---|
| • bk commit into 5.1 tree (msvensson:1.2602) | msvensson | 25 Apr |