mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-14 02:12:21 +00:00
Fix comment
This commit is contained in:
parent
2d9812b9e9
commit
dbebdc3dca
@ -5764,7 +5764,7 @@ void StorageReplicatedMergeTree::alter(
|
|||||||
while (true)
|
while (true)
|
||||||
{
|
{
|
||||||
if (shutdown_called || partial_shutdown_called)
|
if (shutdown_called || partial_shutdown_called)
|
||||||
throw Exception(ErrorCodes::ABORTED, "Cannot assing alter because shutdown called");
|
throw Exception(ErrorCodes::ABORTED, "Cannot assign alter because shutdown called");
|
||||||
|
|
||||||
bool pulled_queue = false;
|
bool pulled_queue = false;
|
||||||
std::optional<int32_t> maybe_mutations_version_after_logs_pull;
|
std::optional<int32_t> maybe_mutations_version_after_logs_pull;
|
||||||
@ -5774,7 +5774,7 @@ void StorageReplicatedMergeTree::alter(
|
|||||||
if (command.isDropSomething())
|
if (command.isDropSomething())
|
||||||
{
|
{
|
||||||
if (shutdown_called || partial_shutdown_called)
|
if (shutdown_called || partial_shutdown_called)
|
||||||
throw Exception(ErrorCodes::ABORTED, "Cannot assing alter because shutdown called");
|
throw Exception(ErrorCodes::ABORTED, "Cannot assign alter because shutdown called");
|
||||||
|
|
||||||
if (!pulled_queue)
|
if (!pulled_queue)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user