Skip to content
Open
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
8 changes: 4 additions & 4 deletions extensions/pst/description.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
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"
excluded_platforms: "windows_amd64_mingw;wasm_mvp;wasm_eh;wasm_threads"
license: MIT
maintainers:
- mach-kernel

repo:
github: intellekthq/duckdb-pst
ref: v0.1.2
ref: v0.1.3

docs:
hello_world: |
Expand All @@ -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 │
Expand Down
Loading