Commit 501418e9 authored by Zardosht Kasheff's avatar Zardosht Kasheff Committed by Yoni Fogel

[t:2182], fix stupid bug

git-svn-id: file:///svn/mysql/tokudb-engine/src@15874 c7de825b-a66e-492c-adef-691d508d4ae1
parent 135e84ce
...@@ -55,7 +55,6 @@ static const char *ha_tokudb_exts[] = { ...@@ -55,7 +55,6 @@ static const char *ha_tokudb_exts[] = {
#define lockretry lockretryN(100) #define lockretry lockretryN(100)
#define lockretry_wait \ #define lockretry_wait \
do { \
if (error != DB_LOCK_NOTGRANTED) { \ if (error != DB_LOCK_NOTGRANTED) { \
break; \ break; \
} \ } \
...@@ -63,7 +62,6 @@ static const char *ha_tokudb_exts[] = { ...@@ -63,7 +62,6 @@ static const char *ha_tokudb_exts[] = {
TOKUDB_TRACE("%s count=%d\n", __FUNCTION__, lockretrycount); \ TOKUDB_TRACE("%s count=%d\n", __FUNCTION__, lockretrycount); \
} \ } \
usleep((lockretrycount<4 ? (1<<lockretrycount) : (1<<3)) * 1024); \ usleep((lockretrycount<4 ? (1<<lockretrycount) : (1<<3)) * 1024); \
} while (0)
// //
// This offset is calculated starting from AFTER the NULL bytes // This offset is calculated starting from AFTER the NULL bytes
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment