File tree Expand file tree Collapse file tree 1 file changed +30
-0
lines changed
Expand file tree Collapse file tree 1 file changed +30
-0
lines changed Original file line number Diff line number Diff line change 1+ extension :
2+ name : gcs
3+ description : DuckDB GCS Extension
4+ extended_description : A native GCS extension with support for standard Google auth methods
5+ version : 0.0.1
6+ language : C++
7+ build : cmake
8+ license : MIT
9+ excluded_platforms : " wasm_mvp;wasm_eh;wasm_threads;windows_amd64_mingw;windows_amd64"
10+ maintainers :
11+ - northpolesec
12+
13+ repo :
14+ github : northpolesec/duckdb-gcs
15+ ref : b0b3bd3e896417308800a04116cf60a129de7e0c
16+
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