diff --git a/src/Common/Macros.cpp b/src/Common/Macros.cpp index 9e0977d9bcc..1d95037b38b 100644 --- a/src/Common/Macros.cpp +++ b/src/Common/Macros.cpp @@ -175,15 +175,6 @@ String Macros::expand(const String & s) const return expand(s, info); } -String Macros::expand(const String & s, const StorageID & table_id, bool allow_uuid) const -{ - MacroExpansionInfo info; - info.table_id = table_id; - if (!allow_uuid) - info.table_id.uuid = UUIDHelpers::Nil; - return expand(s, info); -} - Names Macros::expand(const Names & source_names, size_t level) const { Names result_names; diff --git a/src/Common/Macros.h b/src/Common/Macros.h index 8b9eded7dcb..4f72932bdfd 100644 --- a/src/Common/Macros.h +++ b/src/Common/Macros.h @@ -57,8 +57,6 @@ public: String expand(const String & s) const; - String expand(const String & s, const StorageID & table_id, bool allow_uuid) const; - /** Apply expand for the list. */