Skip to content

Commit

Permalink
Fix build CustomStorageMergeTree.h due to ClickHouse/ClickHouse#59531
Browse files Browse the repository at this point in the history
(cherry picked from commit 666208f)
(cherry picked from commit 60f3415)
  • Loading branch information
baibaichen committed Feb 25, 2024
1 parent 2498079 commit f073c5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cpp-ch/local-engine/Storages/CustomStorageMergeTree.h
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ class CustomStorageMergeTree final : public MergeTreeData
void replacePartitionFrom(const StoragePtr & source_table, const ASTPtr & partition, bool replace, ContextPtr context) override;
void movePartitionToTable(const StoragePtr & dest_table, const ASTPtr & partition, ContextPtr context) override;
bool partIsAssignedToBackgroundOperation(const DataPartPtr & part) const override;
std::map<int64_t, MutationCommands> getAlterMutationCommandsForPart(const DataPartPtr & /*part*/) const override { return {}; }
MutationCommands getAlterMutationCommandsForPart(const DataPartPtr & /*part*/) const override { return {}; }
void attachRestoredParts(MutableDataPartsVector && /*parts*/) override { throw std::runtime_error("not implement"); }
};

Expand Down

0 comments on commit f073c5b

Please sign in to comment.