From 8f54e2e7d5f0e7d5284a4510ac0be01e82d859a3 Mon Sep 17 00:00:00 2001 From: wangmm0220 Date: Mon, 27 Sep 2021 19:28:24 +0800 Subject: [PATCH] TD-6129 add tag-> where logic --- src/tsdb/src/tsdbMeta.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tsdb/src/tsdbMeta.c b/src/tsdb/src/tsdbMeta.c index 902de7c248..321412e49c 100644 --- a/src/tsdb/src/tsdbMeta.c +++ b/src/tsdb/src/tsdbMeta.c @@ -1081,7 +1081,7 @@ static void tsdbRemoveTableFromMeta(STsdbRepo *pRepo, STable *pTable, bool rmFro tsdbUnRefTable(pTable); } -int tscCompareJsonMapValue(const void* a, const void* b) { +int tsdbCompareJsonMapValue(const void* a, const void* b) { const JsonMapValue* x = (const JsonMapValue*)a; const JsonMapValue* y = (const JsonMapValue*)b; if (x->table > y->table) return 1; -- GitLab