(verify_row): uid check was too strict.
This commit is contained in:
parent
75eec5e0e3
commit
f576dd6694
1 changed files with 4 additions and 0 deletions
|
@ -115,6 +115,10 @@ verify_row(int type, int row)
|
|||
}
|
||||
} else if (ca[i].ca_table == type && i == 0) {
|
||||
/* uid */
|
||||
/* Some files contain zeroed records, cope */
|
||||
/* TODO tighten this check */
|
||||
if (val.val_as.lng == 0)
|
||||
continue;
|
||||
if (val.val_as.lng != row) {
|
||||
verify_fail(type, row, &ca[i],
|
||||
"value is %ld instead of %d",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue