File tree Expand file tree Collapse file tree 1 file changed +15
-1
lines changed
Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Original file line number Diff line number Diff 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
1313repo :
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+
You can’t perform that action at this time.
0 commit comments