This is an automated email from the ASF dual-hosted git repository.
paleolimbot pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/sedona-db.git
The following commit(s) were added to refs/heads/main by this push:
new 0163a6be fix: Ensure GPKG metadata consistency in test for GDAL 3.10+
(#740)
0163a6be is described below
commit 0163a6bece98a127c44a74d4a9c9bb5e42f5f3d9
Author: Kristin Cowalcijk <[email protected]>
AuthorDate: Sat Mar 28 23:45:10 2026 +0800
fix: Ensure GPKG metadata consistency in test for GDAL 3.10+ (#740)
Co-authored-by: kontinuation <[email protected]>
---
c/sedona-gdal/src/vector/layer.rs | 1 +
1 file changed, 1 insertion(+)
diff --git a/c/sedona-gdal/src/vector/layer.rs
b/c/sedona-gdal/src/vector/layer.rs
index 8111f231..4c986ea1 100644
--- a/c/sedona-gdal/src/vector/layer.rs
+++ b/c/sedona-gdal/src/vector/layer.rs
@@ -169,6 +169,7 @@ mod tests {
let write_count = unsafe {
GDALDatasetGetLayerCount(dataset.c_dataset()) };
assert_eq!(write_count, 1);
+ drop(dataset);
let read_dataset = Dataset::open_ex(
api,