From c3f4c4cf279b37c3f82fcb3d66c74ef5b8b6bbb1 Mon Sep 17 00:00:00 2001 From: wangmm0220 Date: Wed, 12 Feb 2025 16:02:14 +0800 Subject: [PATCH] fix:[TS-5776]add raw type from consumer --- source/client/src/clientTmq.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/client/src/clientTmq.c b/source/client/src/clientTmq.c index 4b2360ea27..1e9533ef69 100644 --- a/source/client/src/clientTmq.c +++ b/source/client/src/clientTmq.c @@ -1745,7 +1745,7 @@ tmq_t* tmq_consumer_new(tmq_conf_t* conf, char* errstr, int32_t errstrLen) { pTmq->resetOffsetCfg = conf->resetOffset; pTmq->replayEnable = conf->replayEnable; pTmq->sourceExcluded = conf->sourceExcluded; - pTmq->rawData = conf->rawData; + pTmq->rawData = 1; pTmq->enableBatchMeta = conf->enableBatchMeta; tstrncpy(pTmq->user, user, TSDB_USER_LEN); if (taosGetFqdn(pTmq->fqdn) != 0) {