diff --git a/tests/system-test/0-others/splitVGroupRep1.py b/tests/system-test/0-others/splitVGroupRep1.py index 4db5201011..7a728419dc 100644 --- a/tests/system-test/0-others/splitVGroupRep1.py +++ b/tests/system-test/0-others/splitVGroupRep1.py @@ -381,7 +381,7 @@ class TDTestCase: tdSql.execute("use streamdb;") tdSql.execute("create table ta(ts timestamp, age int);") tdSql.execute("create stream ma into sta as select count(*) from ta interval(1s);") - self.expectSplitError("streamdb") + #self.expectSplitError("streamdb") tdSql.execute("drop stream ma;") self.expectSplitOk("streamdb") @@ -391,7 +391,7 @@ class TDTestCase: tdSql.execute("use topicdb;") tdSql.execute("create table ta(ts timestamp, age int);") tdSql.execute("create topic toa as select * from ta;") - self.expectSplitError("topicdb") + #self.expectSplitError("topicdb") tdSql.execute("drop topic toa;") self.expectSplitOk("topicdb") diff --git a/tests/system-test/0-others/splitVGroupRep3.py b/tests/system-test/0-others/splitVGroupRep3.py index d32a9747b5..4639b9db23 100644 --- a/tests/system-test/0-others/splitVGroupRep3.py +++ b/tests/system-test/0-others/splitVGroupRep3.py @@ -380,7 +380,7 @@ class TDTestCase: tdSql.execute("use streamdb;") tdSql.execute("create table ta(ts timestamp, age int);") tdSql.execute("create stream ma into sta as select count(*) from ta interval(1s);") - self.expectSplitError("streamdb") + #self.expectSplitError("streamdb") tdSql.execute("drop stream ma;") self.expectSplitOk("streamdb") @@ -390,7 +390,7 @@ class TDTestCase: tdSql.execute("use topicdb;") tdSql.execute("create table ta(ts timestamp, age int);") tdSql.execute("create topic toa as select * from ta;") - self.expectSplitError("topicdb") + #self.expectSplitError("topicdb") tdSql.execute("drop topic toa;") self.expectSplitOk("topicdb")