[enhancement](regression-test) add sleep 3s for schema change and rollup (#17484)

Co-authored-by: yiguolei <yiguolei@gmail.com>
This commit is contained in:
yiguolei
2023-03-08 10:43:05 +08:00
committed by GitHub
parent 4692d6764c
commit c97422bd3d
35 changed files with 93 additions and 1 deletions

View File

@ -311,7 +311,9 @@ public class InternalCatalog implements CatalogIf<Database> {
// to see which thread held this lock for long time.
Thread owner = lock.getOwner();
if (owner != null) {
LOG.debug("catalog lock is held by: {}", Util.dumpThread(owner, 10));
// There are many catalog timeout during regression test
// And this timeout should not happen very often, so it could be info log
LOG.info("catalog lock is held by: {}", Util.dumpThread(owner, 10));
}
}