stop checking hash.size, which has changed

This commit is contained in:
Sears Russell 2009-03-15 02:11:01 +00:00
parent 9e54ad60d5
commit a69e61ed85

View file

@ -20,7 +20,7 @@ int main(int argc, char** argv) {
recordid hash = ThashCreate(xid, VARIABLE_LENGTH, VARIABLE_LENGTH);
// printf("rid = %d, %d, %lld\n", hash.page, hash.slot, hash.size);
assert(hash.page == 1 && hash.slot == 0 && hash.size == 48);
assert(hash.page == 1 && hash.slot == 0);// && hash.size == 48);
struct timeval start;
struct timeval now;