Skip to content

Commit b35d405

Browse files
committed
Don't build on Windows at all, add hello_world doc
1 parent a814cc6 commit b35d405

File tree

1 file changed

+15
-1
lines changed

1 file changed

+15
-1
lines changed

extensions/gcs/description.yml

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,25 @@ extension:
66
language: C++
77
build: cmake
88
license: MIT
9-
excluded_platforms: "wasm_mvp;wasm_eh;wasm_threads;windows_amd64_mingw"
9+
excluded_platforms: "wasm_mvp;wasm_eh;wasm_threads;windows_amd64_mingw;windows_amd64"
1010
maintainers:
1111
- northpolesec
1212

1313
repo:
1414
github: northpolesec/duckdb-gcs
1515
ref: b0b3bd3e896417308800a04116cf60a129de7e0c
1616

17+
docs:
18+
hello_world: |
19+
-- Add auth credentials using Application Default Creds
20+
D CREATE SECRET secret (TYPE gcp, PROVIDER credential_chain);
21+
22+
-- Read a file from GCS
23+
D SELECT * FROM read_text('gcss://rah-public-gcs-testing/quack.txt');
24+
┌─────────────────────────────────────────┬─────────┬───────┬──────────────────────────┐
25+
│ filename │ content │ size │ last_modified │
26+
│ varchar │ varchar │ int64 │ timestamp with time zone │
27+
├─────────────────────────────────────────┼─────────┼───────┼──────────────────────────┤
28+
│ gcss://rah-public-gcs-testing/quack.txt │ 🦆 │ 4 │ 2025-09-23 16:20:03-04 │
29+
└─────────────────────────────────────────┴─────────┴───────┴──────────────────────────┘
30+

0 commit comments

Comments
 (0)