From f44ee37e8264dd6de32dad92713f6d8805021a41 Mon Sep 17 00:00:00 2001 From: Slach Date: Wed, 27 Dec 2023 19:36:31 +0500 Subject: [PATCH] ALTER TABLE ... FREEZE + encrypted disk over s3 disk doesn't work, wait when fix https://github.com/ClickHouse/ClickHouse/issues/58247 --- test/integration/integration_test.go | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/test/integration/integration_test.go b/test/integration/integration_test.go index f8e6555a..d8baa094 100644 --- a/test/integration/integration_test.go +++ b/test/integration/integration_test.go @@ -2221,9 +2221,10 @@ func generateTestDataWithDifferentStoragePolicy(remoteStorageType string, testDa if compareVersion(os.Getenv("CLICKHOUSE_VERSION"), "21.12") >= 0 && remoteStorageType == "S3" { testDataWithStoragePolicy.Name = "test_s3_encrypted" testDataWithStoragePolicy.Schema = "(id UInt64) Engine=MergeTree ORDER BY id SETTINGS storage_policy = 's3_only_encrypted'" - if compareVersion(os.Getenv("CLICKHOUSE_VERSION"), "23.3") >= 0 { - testDataWithStoragePolicy.Schema = "(id UInt64) Engine=ReplicatedMergeTree('/clickhouse/tables/{cluster}/{shard}/{database}/{table}','{replica}') ORDER BY id SETTINGS storage_policy = 's3_only_encrypted'" - } + // @todo wait when fix https://github.com/ClickHouse/ClickHouse/issues/58247 + //if compareVersion(os.Getenv("CLICKHOUSE_VERSION"), "23.12") >= 0 { + // testDataWithStoragePolicy.Schema = "(id UInt64) Engine=ReplicatedMergeTree('/clickhouse/tables/{cluster}/{shard}/{database}/{table}','{replica}') ORDER BY id SETTINGS storage_policy = 's3_only_encrypted'" + //} addTestDataIfNotExists() } //gcs over s3 support added in 22.6