diff --git a/src/storage/sqlite_catalog.cpp b/src/storage/sqlite_catalog.cpp index a228510..b01a247 100644 --- a/src/storage/sqlite_catalog.cpp +++ b/src/storage/sqlite_catalog.cpp @@ -41,7 +41,7 @@ optional_ptr SQLiteCatalog::LookupSchema(CatalogTransaction if (if_not_found == OnEntryNotFound::RETURN_NULL) { return nullptr; } - throw BinderException("SQLite databases only have a single schema - \"%s\"", DEFAULT_SCHEMA); + throw BinderException("SQLite databases only have a single schema - \"%s\"", std::string(DEFAULT_SCHEMA)); } bool SQLiteCatalog::InMemory() {