stop checking hash.size, which has changed
This commit is contained in:
parent
9e54ad60d5
commit
a69e61ed85
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue