From 408212949f535cb90cf41dbafd82b8ec3c4553e0 Mon Sep 17 00:00:00 2001 From: chenhaoran Date: Tue, 23 Jan 2024 18:21:10 +0800 Subject: [PATCH] test:add special compatibility testcase for code coverage --- tests/system-test/6-cluster/clusterCommonCreate.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/system-test/6-cluster/clusterCommonCreate.py b/tests/system-test/6-cluster/clusterCommonCreate.py index cb44710b58..cb8a9bc9e2 100644 --- a/tests/system-test/6-cluster/clusterCommonCreate.py +++ b/tests/system-test/6-cluster/clusterCommonCreate.py @@ -217,8 +217,8 @@ class ClusterComCreate: def alterStbMetaData(self,tsql,dbName,stbName,ctbNum,rowsPerTbl,batchNum,startTs=None): tdLog.debug("alter Stb column ............") - tdLog.debug(f"describe STABLE {dbName}.{stbName} ") - tsql.execute(f"describe STABLE {dbName}.{stbName} ;") + tdLog.debug(f"describe {dbName}.{stbName} ") + tsql.execute(f"describe {dbName}.{stbName} ;") tdLog.debug(f"ALTER STABLE {dbName}.{stbName} MODIFY COLUMN c3 binary(20);") tsql.execute(f" ALTER STABLE {dbName}.{stbName} MODIFY COLUMN c3 binary(20);") tdLog.debug(f"ALTER STABLE {dbName}.{stbName} ADD COLUMN c4 DOUBLE;")