Skip to content
Merged
Show file tree
Hide file tree
Changes from 6 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
2 changes: 1 addition & 1 deletion cmake/Options/TileDBToolchain.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ if (NOT DEFINED CMAKE_TOOLCHAIN_FILE)
# Inspired from https://github.com/Azure/azure-sdk-for-cpp/blob/azure-core_1.10.3/cmake-modules/AzureVcpkg.cmake
message("TILEDB_DISABLE_AUTO_VCPKG is not defined. Fetch a local copy of vcpkg.")
# To help with resolving conflicts, when you update the commit, also update its date.
set(VCPKG_COMMIT_STRING 3b9d086009cc1c2256e9c28ad44a00036fbd9b26) # 2025-10-24
set(VCPKG_COMMIT_STRING dd930e314f529c86d2703a60d5ea7dd6573d9e5a) # 2026-2-19
message("Vcpkg commit string used: ${VCPKG_COMMIT_STRING}")
include(FetchContent)
FetchContent_Declare(
Expand Down
1 change: 1 addition & 0 deletions scripts/run-azurite.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ run_azurite() {
--location /tmp/azurite-data \
--debug /tmp/azurite-data/debug.log \
--blobPort 10000 \
--skipApiVersionCheck \
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would prefer to update the Azure VFS' initialization code to specify API version 2025-11-05; this way it would be easier to notice in the future, after Azurite gets updated (Azure/Azurite#2629).

--blobHost 0.0.0.0 &
export AZURITE_PID=$!
}
Expand Down
3 changes: 2 additions & 1 deletion tiledb/sm/filesystem/azure.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1214,7 +1214,8 @@ LsObjects Azure::list_blobs_impl(
recursive ? "" : "/",
{.Prefix = blob_path,
.ContinuationToken = to_azure_nullable(continuation_token),
.PageSizeHint = max_keys});
.PageSizeHint = max_keys,
.StartFrom = {}});
Comment on lines +1222 to +1223
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why was this changed? Isn't {} the default already?

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

continuation_token = from_azure_nullable(response.NextPageToken);

result.reserve(response.Blobs.size() + response.BlobPrefixes.size());
Expand Down
2 changes: 1 addition & 1 deletion tiledb/sm/serialization/tiledb-rest.capnp.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
#ifndef CAPNP_VERSION
#error \
"CAPNP_VERSION is not defined, is capnp/generated-header-support.h missing?"
#elif CAPNP_VERSION != 1002000
#elif CAPNP_VERSION != 1003000
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Only that changed? That's nice.

#error \
"Version mismatch between generated code and library headers. You must use the same version of the Cap'n Proto compiler and library."
#endif
Expand Down
2 changes: 1 addition & 1 deletion vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"builtin-baseline": "3b9d086009cc1c2256e9c28ad44a00036fbd9b26",
"builtin-baseline": "dd930e314f529c86d2703a60d5ea7dd6573d9e5a",
"dependencies": [
{
"name": "blosc2",
Expand Down
Loading