diff --git a/tests/system-test/3-enterprise/restore/restoreBasic.py b/tests/system-test/3-enterprise/restore/restoreBasic.py index af1df0e3f4515cfc56959ff9296dcea65dccaf73..485f896f0576709caefa35ec21cebf76c8e12cdc 100644 --- a/tests/system-test/3-enterprise/restore/restoreBasic.py +++ b/tests/system-test/3-enterprise/restore/restoreBasic.py @@ -164,6 +164,7 @@ class RestoreBasic: # exec restore sql = f"restore vnode on dnode {index}" + tdLog.info(sql) tdSql.execute(sql) # check result @@ -191,6 +192,7 @@ class RestoreBasic: # exec restore sql = f"restore mnode on dnode {index}" + tdLog.info(sql) tdSql.execute(sql) self.check_corrent() @@ -217,6 +219,7 @@ class RestoreBasic: # exec restore sql = f"restore qnode on dnode {index}" + tdLog.info(sql) tdSql.execute(sql) self.check_corrent() diff --git a/tests/system-test/3-enterprise/restore/restoreVnode.py b/tests/system-test/3-enterprise/restore/restoreVnode.py index 57e95e34c3e46d3e447af57d04dee1e9791ac76f..9f5b7f56068a72ea8144ef3a1f8f97f22dc6c867 100644 --- a/tests/system-test/3-enterprise/restore/restoreVnode.py +++ b/tests/system-test/3-enterprise/restore/restoreVnode.py @@ -30,7 +30,7 @@ class TDTestCase: # run def run(self): - self.basic.restore_dnode(4) + self.basic.restore_vnode(4) # stop def stop(self):