mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 07:01:59 +00:00
Check ALTERs; update test
This commit is contained in:
parent
b9f49d31df
commit
2c40539df6
@ -1471,7 +1471,6 @@ void MergeTreeData::checkAlterIsPossible(const AlterCommands & commands, const S
|
||||
|
||||
if (old_metadata.hasSettingsChanges())
|
||||
{
|
||||
|
||||
const auto current_changes = old_metadata.getSettingsChanges()->as<const ASTSetQuery &>().changes;
|
||||
const auto & new_changes = new_metadata.settings_changes->as<const ASTSetQuery &>().changes;
|
||||
for (const auto & changed_setting : new_changes)
|
||||
@ -1619,6 +1618,7 @@ void MergeTreeData::changeSettings(
|
||||
const auto & new_changes = new_settings->as<const ASTSetQuery &>().changes;
|
||||
|
||||
for (const auto & change : new_changes)
|
||||
{
|
||||
if (change.name == "storage_policy")
|
||||
{
|
||||
StoragePolicyPtr new_storage_policy = global_context.getStoragePolicy(change.value.safeGet<String>());
|
||||
@ -1653,9 +1653,13 @@ void MergeTreeData::changeSettings(
|
||||
has_storage_policy_changed = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
MergeTreeSettings copy = *getSettings();
|
||||
copy.applyChanges(new_changes);
|
||||
|
||||
copy.sanityCheck(global_context.getSettingsRef());
|
||||
|
||||
storage_settings.set(std::make_unique<const MergeTreeSettings>(copy));
|
||||
StorageInMemoryMetadata new_metadata = getInMemoryMetadata();
|
||||
new_metadata.setSettingsChanges(new_settings);
|
||||
|
@ -1,7 +1,7 @@
|
||||
DROP TABLE IF EXISTS t;
|
||||
|
||||
SET mutations_sync = 1;
|
||||
CREATE TABLE t (x UInt8, s String) ENGINE = MergeTree ORDER BY x SETTINGS number_of_free_entries_in_pool_to_execute_mutation = 1000;
|
||||
CREATE TABLE t (x UInt8, s String) ENGINE = MergeTree ORDER BY x SETTINGS number_of_free_entries_in_pool_to_execute_mutation = 15;
|
||||
|
||||
INSERT INTO t VALUES (1, 'hello');
|
||||
SELECT * FROM t;
|
||||
|
@ -1,3 +1,5 @@
|
||||
DROP TABLE IF EXISTS mytable_local;
|
||||
|
||||
CREATE TABLE mytable_local
|
||||
(
|
||||
created DateTime,
|
||||
@ -19,3 +21,17 @@ ENGINE = MergeTree()
|
||||
PARTITION BY toYYYYMM(eventday)
|
||||
ORDER BY (eventday, user_id)
|
||||
SETTINGS number_of_free_entries_in_pool_to_lower_max_size_of_merge = 100; -- { serverError 36 }
|
||||
|
||||
CREATE TABLE mytable_local
|
||||
(
|
||||
created DateTime,
|
||||
eventday Date,
|
||||
user_id UInt32
|
||||
)
|
||||
ENGINE = MergeTree()
|
||||
PARTITION BY toYYYYMM(eventday)
|
||||
ORDER BY (eventday, user_id);
|
||||
|
||||
ALTER TABLE mytable_local MODIFY SETTING number_of_free_entries_in_pool_to_execute_mutation = 100; -- { serverError 36 }
|
||||
|
||||
DROP TABLE mytable_local;
|
||||
|
Loading…
Reference in New Issue
Block a user