List:Commits« Previous MessageNext Message »
From:tomas Date:April 4 2007 2:46pm
Subject:bk commit into 5.1 tree (tomas:1.2546)
View as plain text  
Below is the list of changes that have just been committed into a local
5.1 repository of tomas. When tomas 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, 2007-04-04 14:46:09+02:00, tomas@stripped +7 -0
  set name for ndb tools

  storage/ndb/tools/delete_all.cpp@stripped, 2007-04-04 14:46:06+02:00, tomas@stripped +1 -0
    set name for ndb tools

  storage/ndb/tools/desc.cpp@stripped, 2007-04-04 14:46:06+02:00, tomas@stripped +1 -0
    set name for ndb tools

  storage/ndb/tools/drop_index.cpp@stripped, 2007-04-04 14:46:06+02:00, tomas@stripped +1 -0
    set name for ndb tools

  storage/ndb/tools/drop_tab.cpp@stripped, 2007-04-04 14:46:06+02:00, tomas@stripped +1 -0
    set name for ndb tools

  storage/ndb/tools/listTables.cpp@stripped, 2007-04-04 14:46:06+02:00, tomas@stripped +1 -0
    set name for ndb tools

  storage/ndb/tools/select_all.cpp@stripped, 2007-04-04 14:46:06+02:00, tomas@stripped +1 -0
    set name for ndb tools

  storage/ndb/tools/select_count.cpp@stripped, 2007-04-04 14:46:06+02:00, tomas@stripped +1 -0
    set name for ndb tools

# This is a BitKeeper patch.  What follows are the unified diffs for the
# set of deltas contained in the patch.  The rest of the patch, the part
# that BitKeeper cares about, is below these diffs.
# User:	tomas
# Host:	whalegate.ndb.mysql.com
# Root:	/home/tomas/mysql-5.1-new-ndb

--- 1.24/storage/ndb/tools/delete_all.cpp	2007-01-24 18:57:04 +01:00
+++ 1.25/storage/ndb/tools/delete_all.cpp	2007-04-04 14:46:06 +02:00
@@ -75,6 +75,7 @@
     return NDBT_ProgramExit(NDBT_WRONGARGS);
 
   Ndb_cluster_connection con(opt_connect_str);
+  con.set_name("ndb_delete_all");
   if(con.connect(12, 5, 1) != 0)
   {
     ndbout << "Unable to connect to management server." << endl;

--- 1.30/storage/ndb/tools/desc.cpp	2007-01-29 15:13:15 +01:00
+++ 1.31/storage/ndb/tools/desc.cpp	2007-04-04 14:46:06 +02:00
@@ -81,6 +81,7 @@
     return NDBT_ProgramExit(NDBT_WRONGARGS);
 
   Ndb_cluster_connection con(opt_connect_str);
+  con.set_name("ndb_desc");
   if(con.connect(12, 5, 1) != 0)
   {
     ndbout << "Unable to connect to management server." << endl;

--- 1.20/storage/ndb/tools/drop_index.cpp	2007-01-24 18:57:04 +01:00
+++ 1.21/storage/ndb/tools/drop_index.cpp	2007-04-04 14:46:06 +02:00
@@ -61,6 +61,7 @@
   }
   
   Ndb_cluster_connection con(opt_connect_str);
+  con.set_name("ndb_drop_index");
   if(con.connect(12, 5, 1) != 0)
   {
     return NDBT_ProgramExit(NDBT_FAILED);

--- 1.19/storage/ndb/tools/drop_tab.cpp	2007-01-24 18:57:04 +01:00
+++ 1.20/storage/ndb/tools/drop_tab.cpp	2007-04-04 14:46:06 +02:00
@@ -61,6 +61,7 @@
   }
 
   Ndb_cluster_connection con(opt_connect_str);
+  con.set_name("ndb_drop_table");
   if(con.connect(12, 5, 1) != 0)
   {
     ndbout << "Unable to connect to management server." << endl;

--- 1.31/storage/ndb/tools/listTables.cpp	2007-01-24 18:57:04 +01:00
+++ 1.32/storage/ndb/tools/listTables.cpp	2007-04-04 14:46:06 +02:00
@@ -307,6 +307,7 @@
   _tabname = argv[0];
 
   ndb_cluster_connection = new Ndb_cluster_connection(opt_connect_str);
+  ndb_cluster_connection->set_name("ndb_show_tables");
   if (ndb_cluster_connection->connect(12,5,1))
     fatal("Unable to connect to management server.");
   if (ndb_cluster_connection->wait_until_ready(30,0) < 0)

--- 1.28/storage/ndb/tools/select_all.cpp	2007-01-24 18:57:04 +01:00
+++ 1.29/storage/ndb/tools/select_all.cpp	2007-04-04 14:46:06 +02:00
@@ -129,6 +129,7 @@
   }
 
   Ndb_cluster_connection con(opt_connect_str);
+  con.set_name("ndb_select_all");
   if(con.connect(12, 5, 1) != 0)
   {
     ndbout << "Unable to connect to management server." << endl;

--- 1.23/storage/ndb/tools/select_count.cpp	2007-01-24 18:57:04 +01:00
+++ 1.24/storage/ndb/tools/select_count.cpp	2007-04-04 14:46:06 +02:00
@@ -83,6 +83,7 @@
   }
 
   Ndb_cluster_connection con(opt_connect_str);
+  con.set_name("ndb_select_count");
   if(con.connect(12, 5, 1) != 0)
   {
     ndbout << "Unable to connect to management server." << endl;
Thread
bk commit into 5.1 tree (tomas:1.2546)tomas4 Apr