From 3bbab43bf2f366c41dabda939b35a95c49ed74de Mon Sep 17 00:00:00 2001 From: Liu Jicong Date: Thu, 1 Sep 2022 13:24:57 +0800 Subject: [PATCH] temporarily set taosx res type to data to pass test --- source/client/src/tmq.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/client/src/tmq.c b/source/client/src/tmq.c index f08f54ef4b..9f9a14952e 100644 --- a/source/client/src/tmq.c +++ b/source/client/src/tmq.c @@ -1773,7 +1773,7 @@ tmq_res_t tmq_get_res_type(TAOS_RES* res) { } return TMQ_RES_TABLE_META; } else if (TD_RES_TMQ_TAOSX(res)) { - return TMQ_RES_TAOSX; + return TMQ_RES_DATA; } else { return TMQ_RES_INVALID; }