From d3228cf9581aefb83a446277bfbbc926560bc5ba Mon Sep 17 00:00:00 2001 From: Haojun Liao Date: Wed, 23 Feb 2022 16:39:21 +0800 Subject: [PATCH] [td-13039] udpate test case. --- source/libs/executor/test/lhashTests.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/libs/executor/test/lhashTests.cpp b/source/libs/executor/test/lhashTests.cpp index 11fc38a37d..533fc67916 100644 --- a/source/libs/executor/test/lhashTests.cpp +++ b/source/libs/executor/test/lhashTests.cpp @@ -30,7 +30,7 @@ TEST(testCase, linear_hash_Tests) { _hash_fn_t fn = taosGetDefaultHashFunction(TSDB_DATA_TYPE_INT); #if 1 - SLHashObj* pHashObj = tHashInit(100, 64 + 8, fn, 4); + SLHashObj* pHashObj = tHashInit(220000, 64 + 8, fn, 4); for(int32_t i = 0; i < 500000; ++i) { tHashPut(pHashObj, &i, sizeof(i), &i, sizeof(i)); }