Skip to content

Commit

Permalink
ci: update server-test.yml to use single statements
Browse files Browse the repository at this point in the history
  • Loading branch information
fanyang01 authored Dec 7, 2024
1 parent a70223d commit 19b1af5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/server-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ jobs:
- name: Test DuckDB SQL features
run: |
# Test some DuckDB-specific features through PostgreSQL protocol
psql -h 127.0.0.1 -p 15432 -U postgres -c "CREATE TABLE numbers AS SELECT * FROM range(1, 5) t(n);"
psql -h 127.0.0.1 -p 15432 -U postgres -c "
CREATE TABLE numbers AS SELECT * FROM range(1, 5) t(n);
SELECT list_aggregate(list(n), 'sum') as list_sum FROM numbers;" | tee duckdb_results.txt
# Verify results (sum should be 10)
Expand All @@ -78,4 +78,4 @@ jobs:
- name: Cleanup
if: always()
run: |
docker rm -f myduck || true
docker rm -f myduck || true

0 comments on commit 19b1af5

Please sign in to comment.