Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
acquamarin committed Aug 21, 2024
1 parent 99401fe commit 162fbfc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion extension/duckdb/src/duckdb_loader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,9 @@ namespace duckdb_extension {

void DuckDBLoader::loadDependency(main::ClientContext* context) {
for (auto& dependencyLib : DuckDBExtension::DEPENDENCY_LIB_FILES) {
auto dependencyLibWithSuffix = extension::ExtensionUtils::appendLibSuffix(dependencyLib);
auto dependencyLibPath =
extension::ExtensionUtils::getLocalPathForSharedLib(context, dependencyLib);
extension::ExtensionUtils::getLocalPathForSharedLib(context, dependencyLibWithSuffix);
auto dependencyLoader = extension::ExtensionLibLoader(extensionName, dependencyLibPath);
}
}
Expand Down

0 comments on commit 162fbfc

Please sign in to comment.