We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a70223d commit 19b1af5Copy full SHA for 19b1af5
.github/workflows/server-test.yml
@@ -63,8 +63,8 @@ jobs:
63
- name: Test DuckDB SQL features
64
run: |
65
# 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);"
67
psql -h 127.0.0.1 -p 15432 -U postgres -c "
- CREATE TABLE numbers AS SELECT * FROM range(1, 5) t(n);
68
SELECT list_aggregate(list(n), 'sum') as list_sum FROM numbers;" | tee duckdb_results.txt
69
70
# Verify results (sum should be 10)
@@ -78,4 +78,4 @@ jobs:
78
- name: Cleanup
79
if: always()
80
81
- docker rm -f myduck || true
+ docker rm -f myduck || true
0 commit comments