From 844e67ed6063a0b9498aa2dc572de824ba8ad86b Mon Sep 17 00:00:00 2001 From: Slach Date: Sat, 13 Jan 2024 19:39:10 +0400 Subject: [PATCH] try to debug TestSkipNotExistsTable Signed-off-by: Slach --- test/integration/integration_test.go | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/test/integration/integration_test.go b/test/integration/integration_test.go index b387a635..6a5b68cb 100644 --- a/test/integration/integration_test.go +++ b/test/integration/integration_test.go @@ -1084,7 +1084,13 @@ func TestSkipNotExistsTable(t *testing.T) { if isAtomic, err := ch.chbackend.IsAtomic("freeze_not_exists"); err == nil && isAtomic { dropDbSQL += " SYNC" } - ch.queryWithNoError(r, dropDbSQL) + // ch.queryWithNoError(r, dropDbSQL) + err = ch.chbackend.Query(dropDbSQL) + if err != nil { + ch.chbackend.Log.Errorf("%s error: %v", dropDbSQL, err) + } + r.NoError(err) + t.Log("TestSkipNotExistsTable DONE, ALL OK") } func TestTablePatterns(t *testing.T) {