Merge pull request #16067 from taosdata/feature/TD-17811

fix(stream): session delete
This commit is contained in:
Shengliang Guan 2022-08-12 20:34:28 +08:00 committed by GitHub
commit 8d8f26a4c1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -241,7 +241,8 @@ SSDataBlock* doProjectOperation(SOperatorInfo* pOperator) {
}
// for stream interval
if (pBlock->info.type == STREAM_RETRIEVE) {
if (pBlock->info.type == STREAM_RETRIEVE || pBlock->info.type == STREAM_DELETE_RESULT ||
pBlock->info.type == STREAM_DELETE_DATA) {
// printDataBlock1(pBlock, "project1");
return pBlock;
}