From 010270a7ac23956a1df78524ee553669698bcdde Mon Sep 17 00:00:00 2001 From: Slach Date: Wed, 29 May 2024 21:02:29 +0400 Subject: [PATCH] fix TestSkipTablesAndSkipTableEngines for 22.3 --- test/integration/integration_test.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/integration/integration_test.go b/test/integration/integration_test.go index 1f3f7bf7..5aaa84d4 100644 --- a/test/integration/integration_test.go +++ b/test/integration/integration_test.go @@ -1397,6 +1397,10 @@ func TestSkipTablesAndSkipTableEngines(t *testing.T) { expectedTables = 5 } if compareVersion(os.Getenv("CLICKHOUSE_VERSION"), "21.12") >= 0 { + expectedTables = 7 + } + //*.inner.target.* for WINDOW VIEW created only after 22.6 + if compareVersion(os.Getenv("CLICKHOUSE_VERSION"), "22.6") >= 0 { expectedTables = 8 } r.Equal(expectedTables, result)