Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
acquamarin committed Feb 13, 2025
1 parent dd174e1 commit 241d8d0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
9 changes: 5 additions & 4 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ allconfig:
$(call config-cmake-release, \
-DBUILD_BENCHMARK=TRUE \
-DBUILD_EXAMPLES=TRUE \
-DBUILD_EXTENSIONS="httpfs;duckdb;json;postgres;sqlite;fts;delta;iceberg" \
-DBUILD_EXTENSIONS="httpfs;duckdb;json;postgres;sqlite;fts;delta;iceberg;unity-catalog" \
-DBUILD_JAVA=TRUE \
-DBUILD_NODEJS=TRUE \
-DBUILD_PYTHON=TRUE \
Expand All @@ -106,7 +106,7 @@ alldebug:
$(call run-cmake-debug, \
-DBUILD_BENCHMARK=TRUE \
-DBUILD_EXAMPLES=TRUE \
-DBUILD_EXTENSIONS="httpfs;duckdb;json;postgres;sqlite;fts;delta;iceberg" \
-DBUILD_EXTENSIONS="httpfs;duckdb;json;postgres;sqlite;fts;delta;iceberg;unity-catalog" \
-DBUILD_JAVA=TRUE \
-DBUILD_NODEJS=TRUE \
-DBUILD_PYTHON=TRUE \
Expand Down Expand Up @@ -195,7 +195,7 @@ example:

extension-test-build:
$(call run-cmake-relwithdebinfo, \
-DBUILD_EXTENSIONS="httpfs;duckdb;json;postgres;sqlite;fts;delta;iceberg" \
-DBUILD_EXTENSIONS="httpfs;duckdb;json;postgres;sqlite;fts;delta;iceberg;unity-catalog" \
-DBUILD_EXTENSION_TESTS=TRUE \
-DBUILD_TESTS=TRUE \
)
Expand Down Expand Up @@ -227,7 +227,7 @@ extension-debug:

extension-release:
$(call run-cmake-release, \
-DBUILD_EXTENSIONS="httpfs;duckdb;json;postgres;sqlite;fts;delta;iceberg" \
-DBUILD_EXTENSIONS="httpfs;duckdb;json;postgres;sqlite;fts;delta;iceberg;unity-catalog" \
-DBUILD_KUZU=FALSE \
)

Expand Down Expand Up @@ -270,6 +270,7 @@ clean-extension:
cmake -E rm -rf extension/fts/build
cmake -E rm -rf extension/delta/build
cmake -E rm -rf extension/iceberg/build
cmake -E rm -rf extension/unity-catalog/build

clean-python-api:
cmake -E rm -rf tools/python_api/build
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ void UnityCatalogConnector::connect(const std::string& dbPath, const std::string
executeQuery("install delta;");
executeQuery("load delta;");
executeQuery("install delta;");
auto query = DuckDBUnityCatalogSecretManager::getSecret(context);
executeQuery(DuckDBUnityCatalogSecretManager::getSecret(context));
executeQuery(common::stringFormat("attach '{}' as {} (TYPE UC_CATALOG, read_only);", dbPath,
catalogName));
Expand Down

0 comments on commit 241d8d0

Please sign in to comment.