Commit ee52f1de authored by John Esmet's avatar John Esmet Committed by Yoni Fogel

refs #5702 add unused() to verify row, for now


git-svn-id: file:///svn/toku/tokudb@52590 c7de825b-a66e-492c-adef-691d508d4ae1
parent 003d6216
...@@ -49,9 +49,7 @@ static void iibench_generate_secondary_keys(int64_t pk, struct iibench_row *row) ...@@ -49,9 +49,7 @@ static void iibench_generate_secondary_keys(int64_t pk, struct iibench_row *row)
row->c = hash(pk * 3); row->c = hash(pk * 3);
} }
static void iibench_verify_row(struct iibench_row *row) { static void UU() iibench_verify_row(struct iibench_row *row) {
(void) iibench_verify_row;
struct iibench_row expected_row; struct iibench_row expected_row;
iibench_generate_secondary_keys(row->pk, &expected_row); iibench_generate_secondary_keys(row->pk, &expected_row);
invariant(row->a == expected_row.a); invariant(row->a == expected_row.a);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment