List:Commits« Previous MessageNext Message »
From:Narayanan V Date:July 3 2008 1:49am
Subject:bzr commit into MySQL Storage Engine API team tree:mysql-6.0-sea branch
(v.narayanan:2644) WL#4448
View as plain text  
#At bzr+ssh://bk-internal.mysql.com/bzrroot/mysql-6.0-sea

 2644 Narayanan V	2008-07-03
      WL#4448
      
      fix return statement for fill_is_table method 
      of ha_ndbcluster.
modified:
  sql/ha_ndbcluster.cc

per-file messages:
  sql/ha_ndbcluster.cc
    fix return statement for fill_is_table method.
=== modified file 'sql/ha_ndbcluster.cc'
--- a/sql/ha_ndbcluster.cc	2008-07-02 06:56:44 +0000
+++ b/sql/ha_ndbcluster.cc	2008-07-03 01:48:23 +0000
@@ -11492,10 +11492,14 @@ static int ndbcluster_fill_is_table(hand
                                       COND *cond,
                                       enum enum_schema_tables schema_table_idx)
 {
+  int ret= 0;
+  
   if (schema_table_idx == SCH_FILES)
   {
-    ndbcluster_fill_files_table(hton, thd, tables, cond);
+    ret= ndbcluster_fill_files_table(hton, thd, tables, cond);
   }
+  
+  return ret;
 }
 
 static int ndbcluster_fill_files_table(handlerton *hton, 

Thread
bzr commit into MySQL Storage Engine API team tree:mysql-6.0-sea branch(v.narayanan:2644) WL#4448Narayanan V3 Jul