From 3ce29b2dc9e501d02e1b170dd15bd0e31c596b30 Mon Sep 17 00:00:00 2001 From: Alex Duan <417921451@qq.com> Date: Thu, 21 Sep 2023 14:18:10 +0800 Subject: [PATCH] fix: do not return 1 --- src/benchInsert.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/benchInsert.c b/src/benchInsert.c index a3a565d1..51fd3431 100644 --- a/src/benchInsert.c +++ b/src/benchInsert.c @@ -3530,8 +3530,7 @@ int insertTestProcess() { } // check fill child table count valid if(fillChildTblName(database, stbInfo) <= 0) { - infoPrint(" warning fill child table is zero, please check parameters in json is correct. database:%s stb: %s \n", database->dbName, stbInfo->stbName); - return 0; + infoPrint(" warning fill childs table count is zero, please check parameters in json is correct. database:%s stb: %s \n", database->dbName, stbInfo->stbName); } if (0 != prepareSampleData(database, stbInfo)) { return -1;