Skip to content

Commit 037b1a8

Browse files
authored
duckdb 1.5.5 (#8895)
Resolves: #8894 Resolves: #8632 Signed-off-by: Mikhail Kot <mikhail@spiraldb.com>
1 parent bc443ac commit 037b1a8

5 files changed

Lines changed: 31 additions & 4 deletions

File tree

.github/workflows/bench-pr.yml

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

5151
- name: Install DuckDB
5252
run: |
53-
wget -qO- https://github.com/duckdb/duckdb/releases/download/v1.5.4/duckdb_cli-linux-amd64.zip | funzip > duckdb
53+
wget -qO- https://github.com/duckdb/duckdb/releases/download/v1.5.5/duckdb_cli-linux-amd64.zip | funzip > duckdb
5454
chmod +x duckdb
5555
echo "$PWD" >> $GITHUB_PATH
5656

.github/workflows/bench.yml

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

6565
- name: Install DuckDB
6666
run: |
67-
wget -qO- https://github.com/duckdb/duckdb/releases/download/v1.5.4/duckdb_cli-linux-amd64.zip | funzip > duckdb
67+
wget -qO- https://github.com/duckdb/duckdb/releases/download/v1.5.5/duckdb_cli-linux-amd64.zip | funzip > duckdb
6868
chmod +x duckdb
6969
echo "$PWD" >> $GITHUB_PATH
7070

.github/workflows/sql-benchmarks.yml

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

550550
- name: Install DuckDB
551551
run: |
552-
wget -qO- https://github.com/duckdb/duckdb/releases/download/v1.5.4/duckdb_cli-linux-amd64.zip | funzip > duckdb
552+
wget -qO- https://github.com/duckdb/duckdb/releases/download/v1.5.5/duckdb_cli-linux-amd64.zip | funzip > duckdb
553553
chmod +x duckdb
554554
echo "$PWD" >> "$GITHUB_PATH"
555555

vortex-duckdb/build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ const DUCKDB_RELEASES_URL: &str = "https://ci-builds.vortex.dev";
2323

2424
const DUCKDB_SOURCE_RELEASE_URL: &str = "https://github.com/duckdb/duckdb/archive/refs/tags";
2525
const DUCKDB_SOURCE_COMMIT_URL: &str = "https://github.com/duckdb/duckdb/archive";
26-
const DEFAULT_DUCKDB_VERSION: &str = "1.5.4";
26+
const DEFAULT_DUCKDB_VERSION: &str = "1.5.5";
2727

2828
const BUILD_ARTIFACTS: [&str; 3] = ["libduckdb.dylib", "libduckdb.so", "libduckdb_static.a"];
2929

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# SPDX-License-Identifier: Apache-2.0
2+
# SPDX-FileCopyrightText: Copyright the Vortex contributors
3+
include ./setup.slt.no
4+
5+
query I
6+
COPY (SELECT * FROM (VALUES ('1'), ('2'), (NULL), ('3')) AS col(col)) TO '$__TEST_DIR__/cte-alias.vortex';
7+
----
8+
4
9+
10+
# TODO(adam): datafusion fails with "Schema error: No field named other"
11+
onlyif duckdb
12+
query T
13+
SELECT col AS other FROM '$__TEST_DIR__/cte-alias.vortex'
14+
WHERE other IS NOT NULL;
15+
----
16+
1
17+
2
18+
3
19+
20+
# duckdb fails with "Couldn't find the other field in the input scope"
21+
query T
22+
WITH cte AS (SELECT col AS other FROM '$__TEST_DIR__/cte-alias.vortex')
23+
SELECT * FROM cte WHERE other IS NOT NULL ORDER BY other;
24+
----
25+
1
26+
2
27+
3

0 commit comments

Comments
 (0)