Skip to content

Commit

Permalink
Support for ch-24.9 (#189)
Browse files Browse the repository at this point in the history
  • Loading branch information
MikhailBurdukov authored Sep 30, 2024
1 parent 257829a commit abe7cd3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/integration/features/backup_replicated.feature
Original file line number Diff line number Diff line change
Expand Up @@ -532,15 +532,15 @@ Feature: Backup replicated merge tree table
ENGINE = ReplicatedMergeTree('/clickhouse/tables/shard_01/test_db.table_01', 'static_name')
PARTITION BY tuple() ORDER BY n SETTINGS index_granularity = 8192
AS
SELECT number FROM system.numbers LIMIT 10
SELECT number AS n FROM system.numbers LIMIT 10
"""
And we have executed queries on clickhouse01
"""
CREATE MATERIALIZED VIEW test_db.view_02 (`n` Int32)
ENGINE = ReplicatedSummingMergeTree('/clickhouse/tables/shard_01/test_db.table_02', 'static_name')
PARTITION BY tuple() ORDER BY n SETTINGS index_granularity = 8192
AS
SELECT number FROM system.numbers LIMIT 10
SELECT number AS n FROM system.numbers LIMIT 10
"""
When we create clickhouse01 clickhouse backup
Then we got the following backups on clickhouse01
Expand Down Expand Up @@ -568,15 +568,15 @@ Feature: Backup replicated merge tree table
ENGINE = ReplicatedMergeTree('/clickhouse/tables/shard_01/test_db.table_01', 'static_name')
PARTITION BY tuple() ORDER BY n SETTINGS index_granularity = 8192
AS
SELECT number FROM system.numbers LIMIT 10
SELECT number AS n FROM system.numbers LIMIT 10
"""
And we have executed queries on clickhouse01
"""
CREATE MATERIALIZED VIEW test_db.view_02 (`n` Int32)
ENGINE = ReplicatedSummingMergeTree('/clickhouse/tables/shard_01/test_db.table_02', 'static_name')
PARTITION BY tuple() ORDER BY n SETTINGS index_granularity = 8192
AS
SELECT number FROM system.numbers LIMIT 10
SELECT number AS n FROM system.numbers LIMIT 10
"""
When we create clickhouse01 clickhouse backup
Then we got the following backups on clickhouse01
Expand Down

0 comments on commit abe7cd3

Please sign in to comment.