ha_ndbcluster.cc:

corrected typo in previous changeset
This commit is contained in:
tomas@poseidon.ndb.mysql.com 2005-02-07 09:58:37 +01:00
parent 4873adace0
commit 6bbaeed5b9

View File

@ -3525,10 +3525,10 @@ static void ndb_set_fragmentation(NDBTAB &tab, TABLE *form, uint pk_length)
ulonglong acc_fragment_size= 512*1024*1024;
ulonglong max_rows= form->max_rows;
#if MYSQL_VERSION_ID >= 50100
no_fragments= (max_rows*acc_row_size)/acc_fragment_size+1;
#else
no_fragments= ((max_rows*acc_row_size)/acc_fragment_size+1
+1/*correct rounding*/)/2;
#else
no_fragments= (max_rows*acc_row_size)/acc_fragment_size+1;
#endif
}
{