Skip to content

Commit

Permalink
try to debug TestSkipNotExistsTable
Browse files Browse the repository at this point in the history
Signed-off-by: Slach <[email protected]>
  • Loading branch information
Slach committed Jan 13, 2024
1 parent 6073b94 commit 844e67e
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion test/integration/integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 844e67e

Please sign in to comment.