Below is the list of changes that have just been committed into a local
5.1 repository of mskold. When mskold 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-02-27 12:36:08+01:00, mskold@stripped +1 -0
Fixed compiler warning
sql/ha_ndbcluster.cc@stripped, 2008-02-27 12:36:02+01:00, mskold@stripped +2 -2
Fixed compiler warning
diff -Nrup a/sql/ha_ndbcluster.cc b/sql/ha_ndbcluster.cc
--- a/sql/ha_ndbcluster.cc 2008-02-27 11:55:19 +01:00
+++ b/sql/ha_ndbcluster.cc 2008-02-27 12:36:02 +01:00
@@ -7647,7 +7647,7 @@ int ha_ndbcluster::ndb_optimize_table(TH
if (index)
{
- if (error= dict->optimizeIndex(*index, ih))
+ if ((error= dict->optimizeIndex(*index, ih)))
{
DBUG_PRINT("info",
("Optimze index %s returned %d",
@@ -7670,7 +7670,7 @@ int ha_ndbcluster::ndb_optimize_table(TH
}
if (unique_index)
{
- if (error= dict->optimizeIndex(*unique_index, ih))
+ if ((error= dict->optimizeIndex(*unique_index, ih)))
{
DBUG_PRINT("info",
("Optimze unique index %s returned %d",
| Thread |
|---|
| • bk commit into 5.1 tree (mskold:1.2559) | Martin Skold | 27 Feb 2008 |