From d78ae2b2d0a958b487b42e3980f80ce7023e19b5 Mon Sep 17 00:00:00 2001 From: David Stancu Date: Sun, 12 Apr 2026 10:49:34 -0400 Subject: [PATCH 1/3] bump duckdb-pst to 0.1.3 --- extensions/pst/description.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/extensions/pst/description.yml b/extensions/pst/description.yml index 567c6bcd0..c11786547 100644 --- a/extensions/pst/description.yml +++ b/extensions/pst/description.yml @@ -1,7 +1,7 @@ extension: name: pst description: Read Microsoft PST files with rich schemas for common MAPI types (emails, contacts, appointments, tasks) - version: 0.1.2 + version: 0.1.3 language: C++ build: cmake excluded_platforms: "windows_amd64_mingw" @@ -11,7 +11,7 @@ extension: repo: github: intellekthq/duckdb-pst - ref: v0.1.2 + ref: v0.1.3 docs: hello_world: | From 7ed3cf75f32c760c86b4c43ee1e1d36154b2ebc4 Mon Sep 17 00:00:00 2001 From: David Stancu Date: Mon, 27 Apr 2026 15:04:54 -0400 Subject: [PATCH 2/3] use unit test pst in sample query --- extensions/pst/description.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/pst/description.yml b/extensions/pst/description.yml index c11786547..194abbbc3 100644 --- a/extensions/pst/description.yml +++ b/extensions/pst/description.yml @@ -25,7 +25,7 @@ docs: └────────────────┘ -- Query contacts (supports remote URIs) - D SELECT given_name, surname FROM read_pst_contacts('https://example.com/outlook.pst'); + D SELECT given_name, surname FROM read_pst_contacts('https://github.com/intellekthq/duckdb-pst/raw/refs/heads/main/test/unittest.pst'); ┌────────────┬─────────┐ │ given_name │ surname │ │ varchar │ varchar │ From 8de61676855416ea8398bcbc85885159634b06c2 Mon Sep 17 00:00:00 2001 From: David Stancu Date: Mon, 27 Apr 2026 15:45:05 -0400 Subject: [PATCH 3/3] skip wasm --- extensions/pst/description.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/pst/description.yml b/extensions/pst/description.yml index 194abbbc3..27f6debcb 100644 --- a/extensions/pst/description.yml +++ b/extensions/pst/description.yml @@ -4,7 +4,7 @@ extension: version: 0.1.3 language: C++ build: cmake - excluded_platforms: "windows_amd64_mingw" + excluded_platforms: "windows_amd64_mingw;wasm_mvp;wasm_eh;wasm_threads" license: MIT maintainers: - mach-kernel