Skip to content

Commit

Permalink
Merge pull request #140 from samansmink/make-function-static
Browse files Browse the repository at this point in the history
make function static
  • Loading branch information
samansmink authored Jan 21, 2025
2 parents b782b13 + dacc25c commit 846019e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/storage/delta_schema_entry.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 846019e

Please sign in to comment.