Skip to content

Commit 19b1af5

Browse files
authored
ci: update server-test.yml to use single statements
1 parent a70223d commit 19b1af5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/server-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ jobs:
6363
- name: Test DuckDB SQL features
6464
run: |
6565
# Test some DuckDB-specific features through PostgreSQL protocol
66+
psql -h 127.0.0.1 -p 15432 -U postgres -c "CREATE TABLE numbers AS SELECT * FROM range(1, 5) t(n);"
6667
psql -h 127.0.0.1 -p 15432 -U postgres -c "
67-
CREATE TABLE numbers AS SELECT * FROM range(1, 5) t(n);
6868
SELECT list_aggregate(list(n), 'sum') as list_sum FROM numbers;" | tee duckdb_results.txt
6969
7070
# Verify results (sum should be 10)
@@ -78,4 +78,4 @@ jobs:
7878
- name: Cleanup
7979
if: always()
8080
run: |
81-
docker rm -f myduck || true
81+
docker rm -f myduck || true

0 commit comments

Comments
 (0)