Skip to content

Commit 6d3399f

Browse files
committed
chore: bump duckdb to 1.5.2
Signed-off-by: Alexander Droste <alexander.droste@protonmail.com>
1 parent ee2af71 commit 6d3399f

6 files changed

Lines changed: 11 additions & 11 deletions

File tree

.github/workflows/bench-pr.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ jobs:
4949

5050
- name: Install DuckDB
5151
run: |
52-
wget -qO- https://github.com/duckdb/duckdb/releases/download/v1.4.2/duckdb_cli-linux-amd64.zip | funzip > duckdb
52+
wget -qO- https://github.com/duckdb/duckdb/releases/download/v1.5.2/duckdb_cli-linux-amd64.zip | funzip > duckdb
5353
chmod +x duckdb
5454
echo "$PWD" >> $GITHUB_PATH
5555

.github/workflows/bench.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ jobs:
6363

6464
- name: Install DuckDB
6565
run: |
66-
wget -qO- https://github.com/duckdb/duckdb/releases/download/v1.4.2/duckdb_cli-linux-amd64.zip | funzip > duckdb
66+
wget -qO- https://github.com/duckdb/duckdb/releases/download/v1.5.2/duckdb_cli-linux-amd64.zip | funzip > duckdb
6767
chmod +x duckdb
6868
echo "$PWD" >> $GITHUB_PATH
6969

.github/workflows/sql-benchmarks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ jobs:
131131

132132
- name: Install DuckDB
133133
run: |
134-
wget -qO- https://github.com/duckdb/duckdb/releases/download/v1.4.2/duckdb_cli-linux-amd64.zip | funzip > duckdb
134+
wget -qO- https://github.com/duckdb/duckdb/releases/download/v1.5.2/duckdb_cli-linux-amd64.zip | funzip > duckdb
135135
chmod +x duckdb
136136
echo "$PWD" >> $GITHUB_PATH
137137

docs/user-guide/duckdb.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# DuckDB
22

33
Vortex is a [core extension](https://duckdb.org/docs/stable/core_extensions/vortex) shipped with
4-
DuckDB, available from DuckDB 1.4.2+ on Linux and macOS (amd64, arm64).
4+
DuckDB, available from DuckDB 1.5.2+ on Linux and macOS (amd64, arm64).
55

66
## Setup
77

@@ -46,10 +46,10 @@ COPY (SELECT * FROM my_table) TO 'output.vortex' (FORMAT vortex);
4646

4747
Controls which filesystem implementation is used for reading and writing Vortex files.
4848

49-
| Value | Description |
50-
|-------|-------------|
51-
| `'vortex'` (default) | Uses Vortex's built-in object store filesystem. Supports `file://` and `s3://` schemes. |
52-
| `'duckdb'` | Uses DuckDB's built-in filesystem, including any filesystem extensions such as `httpfs`. |
49+
| Value | Description |
50+
| -------------------- | ---------------------------------------------------------------------------------------- |
51+
| `'vortex'` (default) | Uses Vortex's built-in object store filesystem. Supports `file://` and `s3://` schemes. |
52+
| `'duckdb'` | Uses DuckDB's built-in filesystem, including any filesystem extensions such as `httpfs`. |
5353

5454
```sql
5555
SET vortex_filesystem = 'duckdb';

vortex-duckdb/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@ By default, our tests use a precompiled build which means you don't get an
6464

6565
2. If there is an api difference between duckdb-vortex's duckdb submodule and
6666
vortex's vortex-duckdb/duckdb submodule, checkout duckdb-vortex to previous
67-
commit. For example, if duckdb-vortex's HEAD uses 1.5 API but vortex's HEAD
68-
uses 1.4.2, checkout duckdb-vortex at 8a41ee6ebd9.
67+
commit. For example, if duckdb-vortex's HEAD uses 1.6 API but vortex's HEAD
68+
uses 1.5.2, checkout duckdb-vortex at 8a41ee6ebd9.
6969

7070
3. Update duckdb-vortex's submodules. Replace vortex/ submodule by a softlink to
7171
your local vortex repository.

vortex-duckdb/build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,7 @@ fn main() {
383383
// e.g. reordering fields in C++ structs.
384384
let version = env::var("DUCKDB_VERSION")
385385
// You can also change this version to a commit hash
386-
.unwrap_or_else(|_| "1.5.0".to_owned());
386+
.unwrap_or_else(|_| "1.5.2".to_owned());
387387
let version = DuckDBVersion::from(&version);
388388
match &version {
389389
DuckDBVersion::Release(v) => println!("cargo:info=Using DuckDB release version: {v}"),

0 commit comments

Comments
 (0)