Skip to content

Commit 386032c

Browse files
authored
Merge branch 'duckdb:main' into msolap
2 parents 2f551ed + 2d1ae39 commit 386032c

File tree

4 files changed

+34
-4
lines changed

4 files changed

+34
-4
lines changed

extensions/gcs/description.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
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+

extensions/prql/description.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ extension:
1212

1313
repo:
1414
github: ywelsch/duckdb-prql
15-
ref: ed0cd73d02436b33e85ac107f21cb693f18de416
15+
ref: 0b411575bb454e96cd5bd8aa97ba1d73ed689a34
1616

1717
docs:
1818
hello_world: |

extensions/psql/description.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ extension:
1010

1111
repo:
1212
github: ywelsch/duckdb-psql
13-
ref: 21d37708ce02819f5601279a67ee05e1ad1397cc
13+
ref: f0ee86e08020f4b7d7300da5be9c7a0f01c63dce
1414

1515
docs:
1616
hello_world: |

extensions/wireduck/description.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
extension:
22
name: wireduck
33
description: Read and dissect PCAP files from DuckDB
4-
version: 0.0.1
4+
version: 0.0.2
55
language: c++
66
build: cmake
77
license: MIT
@@ -11,7 +11,7 @@ extension:
1111

1212
repo:
1313
github: hyehudai/wireduck
14-
ref: 1970a7c27360e75acc54beb9e778a6513261296b
14+
ref: 19c4018cc8ebad08547d621bcdc25df86294ca2b
1515

1616
docs:
1717
hello_world: |

0 commit comments

Comments
 (0)