List:Commits« Previous MessageNext Message »
From:msvensson Date:April 25 2008 12:34pm
Subject:bk commit into 5.1 tree (msvensson:1.2600)
View as plain text  
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 14:34:15+02:00, msvensson@stripped +1 -0
  Allow aplhanumericals in cluster_confgi.xxx sectio

  mysql-test/lib/My/ConfigFactory.pm@stripped, 2008-04-25 14:34:14+02:00, msvensson@stripped +3 -3
    Allow aplhanumericals in cluster_confgi.xxx sectio

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 11:22:13 +02:00
+++ b/mysql-test/lib/My/ConfigFactory.pm	2008-04-25 14:34:14 +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.[0-9]') )
+  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.[0-9]') ) {
+  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.[0-9]',
+			   'cluster_config\.\w*',
 			   @cluster_config_rules);
   $self->run_generate_sections_from_cluster_config($config);
 
Thread
bk commit into 5.1 tree (msvensson:1.2600)msvensson25 Apr