summaryrefslogtreecommitdiff
path: root/sql/ha_ndbcluster.cc
diff options
context:
space:
mode:
authortomas@whalegate.ndb.mysql.com <>2007-04-25 15:21:38 +0200
committertomas@whalegate.ndb.mysql.com <>2007-04-25 15:21:38 +0200
commit0ac443eff53bfe17fda4cf8e27c1fbd53db6cbbc (patch)
tree8e5f6e6f649fe7698c7b9f0f976a85c8b3b05581 /sql/ha_ndbcluster.cc
parentdd6073f5d70ca4d8a9881ecc59448e1f1c6711a4 (diff)
downloadmariadb-git-0ac443eff53bfe17fda4cf8e27c1fbd53db6cbbc.tar.gz
Bug #28093 ndb: retry sleep in get table stats 30s instead of 30ms
Diffstat (limited to 'sql/ha_ndbcluster.cc')
-rw-r--r--sql/ha_ndbcluster.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/ha_ndbcluster.cc b/sql/ha_ndbcluster.cc
index 927dc3a75b2..a02cb9a4461 100644
--- a/sql/ha_ndbcluster.cc
+++ b/sql/ha_ndbcluster.cc
@@ -6059,7 +6059,7 @@ ndb_get_table_statistics(ha_ndbcluster* file, bool report_error, Ndb* ndb,
NdbError error;
int retries= 10;
int reterr= 0;
- int retry_sleep= 30 * 1000; /* 30 milliseconds */
+ int retry_sleep= 30; /* 30 milliseconds, transaction */
char buff[22], buff2[22], buff3[22], buff4[22];
DBUG_ENTER("ndb_get_table_statistics");
DBUG_PRINT("enter", ("table: %s", table));