Details
-
Technical Debt
-
Status: Closed
-
Major - P3
-
Resolution: Fixed
-
None
-
None
-
2
-
Storage Engines - 2022-10-31
Description
In test/format, we call wts_verify to verify tables. In the main function, we call it twice when verify_only is true:
TIMED_MAJOR_OP(wts_verify(g.wts_conn, true));
|
if (verify_only)
|
goto skip_operations;
|
...
|
skip_operations:
|
locks_destroy(g.wts_conn);
|
|
/*
|
* Verify the objects. Verify closes the underlying handle and discards the statistics, read
|
* them first.
|
*/
|
TIMED_MAJOR_OP(wts_verify(g.wts_conn, true));
|
We should remove the second call.