Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: multicorn2 (Postgres FDW) backend #397

Merged
merged 15 commits into from
Sep 24, 2024
Prev Previous commit
Next Next commit
Remove entrypoint
  • Loading branch information
betodealmeida committed Sep 24, 2024
commit bbd8cc8f3969b360f10e15da87a43da1e54a1147
4 changes: 2 additions & 2 deletions .github/workflows/python-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
docker compose -f postgres/docker-compose.yml up --build -d
- name: Wait for Postgres to become available
run: |
until docker run --network container:postgres_postgres_1 postgres_postgres pg_isready -h postgres -p 5432 -U shillelagh --timeout=90; do sleep 10; done
until docker run --network container:postgres-postgres-1 postgres-postgres pg_isready -h postgres -p 5432 -U shillelagh --timeout=90; do sleep 10; done
- name: Test with pytest
env:
SHILLELAGH_ADAPTER_KWARGS: ${{ secrets.SHILLELAGH_ADAPTER_KWARGS }}
Expand All @@ -45,5 +45,5 @@ jobs:
- name: Stop the Postgres service
if: always()
run: |
docker logs postgres_postgres_1
docker logs postgres-postgres-1
docker compose -f postgres/docker-compose.yml down
22 changes: 0 additions & 22 deletions postgres/entrypoint.sh

This file was deleted.

2 changes: 1 addition & 1 deletion tests/adapters/api/gsheets/integration_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -769,7 +769,7 @@ def test_public_sheet_multicorn() -> None:
user="shillelagh",
password="shillelagh123",
host="localhost",
port=12345,
port=5432,
database="shillelagh",
)
cursor = connection.cursor()
Expand Down
Loading