From 7061a44de0b824d4a31cdff936d9f3c946028892 Mon Sep 17 00:00:00 2001 From: wangmm0220 Date: Mon, 21 Nov 2022 14:25:58 +0800 Subject: [PATCH] fix:TS-2131 disable return error if lastkey is old than keep --- src/tsdb/src/tsdbRead.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tsdb/src/tsdbRead.c b/src/tsdb/src/tsdbRead.c index 2126597e42..92e6ce4889 100644 --- a/src/tsdb/src/tsdbRead.c +++ b/src/tsdb/src/tsdbRead.c @@ -627,7 +627,7 @@ static int32_t lazyLoadCacheLast(STsdbQueryHandle* pQueryHandle) { if (!pQueryHandle->pTableCheckInfo) { tsdbError("%p table check info is NULL", pQueryHandle); - terrno = TSDB_CODE_QRY_APP_ERROR; +// terrno = TSDB_CODE_QRY_APP_ERROR; return -1; } -- GitLab