From 509bde109e4a87ea97d4d5e02e49d773102e8e73 Mon Sep 17 00:00:00 2001 From: Jussi Saurio Date: Tue, 30 Sep 2025 17:34:49 +0300 Subject: [PATCH] mvcc benchmark compilation fix --- core/benches/mvcc_benchmark.rs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/core/benches/mvcc_benchmark.rs b/core/benches/mvcc_benchmark.rs index ecce8c06d..0ebd33fa5 100644 --- a/core/benches/mvcc_benchmark.rs +++ b/core/benches/mvcc_benchmark.rs @@ -68,7 +68,7 @@ fn bench(c: &mut Criterion) { .read( tx_id, RowID { - table_id: 1, + table_id: (-2).into(), row_id: 1, }, ) @@ -98,7 +98,7 @@ fn bench(c: &mut Criterion) { tx_id, Row { id: RowID { - table_id: 1, + table_id: (-2).into(), row_id: 1, }, data: record_data.clone(), @@ -126,7 +126,7 @@ fn bench(c: &mut Criterion) { tx_id, Row { id: RowID { - table_id: 1, + table_id: (-2).into(), row_id: 1, }, data: record_data.clone(), @@ -140,7 +140,7 @@ fn bench(c: &mut Criterion) { .read( tx_id, RowID { - table_id: 1, + table_id: (-2).into(), row_id: 1, }, ) @@ -155,7 +155,7 @@ fn bench(c: &mut Criterion) { tx_id, Row { id: RowID { - table_id: 1, + table_id: (-2).into(), row_id: 1, }, data: record_data.clone(), @@ -170,7 +170,7 @@ fn bench(c: &mut Criterion) { tx_id, Row { id: RowID { - table_id: 1, + table_id: (-2).into(), row_id: 1, }, data: record_data.clone(),