From 3b6c46dc6849272c7a20cc5edc2dbfe66d999102 Mon Sep 17 00:00:00 2001 From: Larry Luo Date: Sun, 1 Jan 2023 06:11:31 -0800 Subject: [PATCH] Fix build error --- src/Storages/AlterCommands.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Storages/AlterCommands.h b/src/Storages/AlterCommands.h index c91c82e9c7a..fd91cc11487 100644 --- a/src/Storages/AlterCommands.h +++ b/src/Storages/AlterCommands.h @@ -210,6 +210,9 @@ public: /// empty. If some TTL changes happened than, depending on materialize_ttl /// additional mutation command (MATERIALIZE_TTL) will be returned. MutationCommands getMutationCommands(StorageInMemoryMetadata metadata, bool materialize_ttl, ContextPtr context, bool with_alters=false) const; + + /// Check if commands have any inverted index + bool hasInvertedIndex(const StorageInMemoryMetadata & metadata, ContextPtr context) const; }; }