From d8d67b93b1ce7c59d3a25a09305eba3c8f7edde2 Mon Sep 17 00:00:00 2001 From: Shengliang Guan Date: Thu, 20 Jan 2022 17:46:41 -0800 Subject: [PATCH] minor changes --- tests/test/c/create_table.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test/c/create_table.c b/tests/test/c/create_table.c index 080f1551c2..b8d8123380 100644 --- a/tests/test/c/create_table.c +++ b/tests/test/c/create_table.c @@ -85,7 +85,7 @@ void createDbAndStb() { } taos_free_result(pRes); - sprintf(qstr, "create table if not exists %s (ts timestamp, i int) tags (j int)", stbName); + sprintf(qstr, "create table if not exists %s (ts timestamp, i int) tags (j bigint)", stbName); pRes = taos_query(con, qstr); code = taos_errno(pRes); if (code != 0) {