From f1d2b5a98422a5b8ccfd8c3ce7a5ae1c1e9b39c2 Mon Sep 17 00:00:00 2001 From: Noel Kwan Date: Fri, 19 May 2023 22:04:06 +0800 Subject: [PATCH] add some debug --- src/stream/src/executor/backfill.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/stream/src/executor/backfill.rs b/src/stream/src/executor/backfill.rs index eddccb992f402..d9c2e6d8ad0bd 100644 --- a/src/stream/src/executor/backfill.rs +++ b/src/stream/src/executor/backfill.rs @@ -154,8 +154,11 @@ where && let Some(is_finished) = row.datum_at(state_len + 1) { println!("is_finished? {:?}", is_finished); + println!("row: {:?}", row); is_finished.into_bool() } else { + println!("not finished"); + println!("row: {:?}", row); false };