From 6dc1df2df2919c678651e56de20ef6982068274b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philip=20Dub=C3=A9?= Date: Tue, 24 Dec 2024 19:43:04 +0000 Subject: [PATCH] does this actually cause fail --- flow/e2e/clickhouse/peer_flow_ch_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)