Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Apply duckdb's patch and bump to latest duckdb #5

Merged
merged 2 commits into from
Apr 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/MainDistributionPipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
uses: duckdb/extension-ci-tools/.github/workflows/[email protected]
with:
vcpkg_commit: a42af01b72c28a8e1d7b48107b33e4f286a55ef6
duckdb_version: v0.10.1
duckdb_version: main
extension_name: vss

duckdb-stable-deploy:
Expand All @@ -26,7 +26,7 @@ jobs:
uses: ./.github/workflows/_extension_deploy.yml
secrets: inherit
with:
duckdb_version: v0.10.1
duckdb_version: main
extension_name: vss
deploy_latest: ${{ startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/main' }}
deploy_versioned: ${{ startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/main' }}
Expand Down
2 changes: 1 addition & 1 deletion duckdb
Submodule duckdb updated 1044 files
2 changes: 1 addition & 1 deletion src/hnsw/hnsw_index_scan.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ static unique_ptr<BaseStatistics> HNSWIndexScanStatistics(ClientContext &context
//-------------------------------------------------------------------------
// Dependency
//-------------------------------------------------------------------------
void HNSWIndexScanDependency(DependencyList &entries, const FunctionData *bind_data_p) {
void HNSWIndexScanDependency(LogicalDependencyList &entries, const FunctionData *bind_data_p) {
auto &bind_data = bind_data_p->Cast<HNSWIndexScanBindData>();
entries.AddDependency(bind_data.table);

Expand Down
Loading