From 5b518e102befbbface9eb2d1aa157c0b6d091446 Mon Sep 17 00:00:00 2001 From: Noel Kwan Date: Wed, 20 Sep 2023 11:02:00 +0800 Subject: [PATCH] fix backfill integration test - add row count --- .../simulation/tests/integration_tests/recovery/backfill.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tests/simulation/tests/integration_tests/recovery/backfill.rs b/src/tests/simulation/tests/integration_tests/recovery/backfill.rs index e907528826864..896f65506554e 100644 --- a/src/tests/simulation/tests/integration_tests/recovery/backfill.rs +++ b/src/tests/simulation/tests/integration_tests/recovery/backfill.rs @@ -30,7 +30,7 @@ const SHOW_INTERNAL_TABLES: &str = "SHOW INTERNAL TABLES;"; static EXPECTED_NO_BACKFILL: LazyLock = LazyLock::new(|| { (0..=255) - .map(|vnode| format!("{} NULL t", vnode)) + .map(|vnode| format!("{} NULL t 0", vnode)) .join("\n") });