diff --git a/flow/e2e/clickhouse/peer_flow_ch_test.go b/flow/e2e/clickhouse/peer_flow_ch_test.go index 60d9288be8..bab2b67905 100644 --- a/flow/e2e/clickhouse/peer_flow_ch_test.go +++ b/flow/e2e/clickhouse/peer_flow_ch_test.go @@ -804,7 +804,7 @@ func (s ClickHouseSuite) Test_IgnoreViewWithMissingTable() { require.NoError(s.t, ch.Exec(context.Background(), fmt.Sprintf( "create view v as select id from %s union all select id from test_ignore_view_drop", dstTableName, ))) - require.NoError(s.t, ch.Exec(context.Background(), "drop table test_ignore_view_drop")) + // require.NoError(s.t, ch.Exec(context.Background(), "drop table test_ignore_view_drop")) _, err = s.Conn().Exec(context.Background(), fmt.Sprintf("INSERT INTO %s (id) VALUES (1)", srcTableName)) require.NoError(s.t, err)