Skip to content

Commit

Permalink
fix TestSkipTablesAndSkipTableEngines for 22.3
Browse files Browse the repository at this point in the history
  • Loading branch information
Slach committed May 29, 2024
1 parent cc75e6a commit 010270a
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions test/integration/integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 010270a

Please sign in to comment.