From 9e5ecf885a90a18eedcfd5d9239fcd8d6c9ba11c Mon Sep 17 00:00:00 2001 From: Steven Li Date: Tue, 21 Jul 2020 07:29:20 +0000 Subject: [PATCH] Minor additional tweaks for crash_gen tool --- tests/pytest/crash_gen.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/pytest/crash_gen.py b/tests/pytest/crash_gen.py index d9c6716c4b..dfe78b6048 100755 --- a/tests/pytest/crash_gen.py +++ b/tests/pytest/crash_gen.py @@ -1474,6 +1474,10 @@ class Task(): elif errno == 0x200 : # invalid SQL, we need to div in a bit more if msg.find("invalid column name") != -1: return True + elif msg.find("tags number not matched") != -1: # mismatched tags after modification + return True + elif msg.find("duplicated column names") != -1: # also alter table tag issues + return True return False # Not an acceptable error