From 399088e2bd589cbffb1acb792bb0a700f1a13c2f Mon Sep 17 00:00:00 2001 From: Haojun Liao Date: Sat, 29 Jul 2023 19:23:35 +0800 Subject: [PATCH] fix(stream): remove invalid code. --- source/libs/executor/src/scanoperator.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/source/libs/executor/src/scanoperator.c b/source/libs/executor/src/scanoperator.c index 067de55001..887aa51665 100644 --- a/source/libs/executor/src/scanoperator.c +++ b/source/libs/executor/src/scanoperator.c @@ -1563,8 +1563,6 @@ static void doBlockDataWindowFilter(SSDataBlock* pBlock, int32_t tsIndex, STimeW ASSERT(pCol->pData != NULL); for (int32_t i = 0; i < pBlock->info.rows; ++i) { int64_t* ts = (int64_t*)colDataGetData(pCol, i); - printf("-------------------%"PRId64"\n", *ts); - p[i] = (*ts >= pWindow->skey); if (!p[i]) { -- GitLab