From dacc25c83c4a9f87c8dbaea0355e0deea8c8d6ae Mon Sep 17 00:00:00 2001 From: Sam Ansmink Date: Tue, 21 Jan 2025 16:57:57 +0100 Subject: [PATCH] make function static --- src/storage/delta_schema_entry.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/storage/delta_schema_entry.cpp b/src/storage/delta_schema_entry.cpp index 61348d4..a05cf0f 100644 --- a/src/storage/delta_schema_entry.cpp +++ b/src/storage/delta_schema_entry.cpp @@ -95,7 +95,7 @@ void DeltaSchemaEntry::Alter(CatalogTransaction transaction, AlterInfo &info) { throw NotImplementedException("Delta tables do not support altering"); } -bool CatalogTypeIsSupported(CatalogType type) { +static bool CatalogTypeIsSupported(CatalogType type) { switch (type) { case CatalogType::TABLE_ENTRY: return true;