From df33b71bef770a27122b704492bc0aa99aff5ab7 Mon Sep 17 00:00:00 2001 From: wangmm0220 Date: Mon, 19 Aug 2024 20:12:52 +0800 Subject: [PATCH] feat:[TD-31242]add new interface taos_get_column_data_null to get if raw data is null --- utils/test/c/tmq_multi_thread_test.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/utils/test/c/tmq_multi_thread_test.c b/utils/test/c/tmq_multi_thread_test.c index 990bf409ca..c34cd43716 100644 --- a/utils/test/c/tmq_multi_thread_test.c +++ b/utils/test/c/tmq_multi_thread_test.c @@ -26,7 +26,7 @@ void* consumeThreadFunc(void* param) { tmq_conf_t* conf = tmq_conf_new(); char groupId[64] = {0}; int64_t t = taosGetTimestampMs(); - sprintf(groupId, "group_%ld_%d", t, *index); + sprintf(groupId, "group_%"PRId64"_%d", t, *index); tmq_conf_set(conf, "enable.auto.commit", "false"); tmq_conf_set(conf, "auto.commit.interval.ms", "2000"); tmq_conf_set(conf, "group.id", groupId);