Skip to content

Commit

Permalink
fix csv files
Browse files Browse the repository at this point in the history
  • Loading branch information
KeXiangWang committed Jan 24, 2024
1 parent f626039 commit 30cd17b
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 8 deletions.
10 changes: 9 additions & 1 deletion .github/workflows/ibis-backends.yml
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,14 @@ jobs:
- postgres
sys-deps:
- libgeos-dev
- os: windows-latest
backend:
name: risingwave
title: Risingwave
services:
- risingwave-standalone
extras:
- risingwave
- os: windows-latest
backend:
name: postgres
Expand Down Expand Up @@ -682,7 +690,7 @@ jobs:
python-version: ${{ matrix.python-version }}

- name: remove deps that are not compatible with sqlalchemy 2
run: poetry remove snowflake-sqlalchemy sqlalchemy-exasol
run: poetry remove snowflake-sqlalchemy sqlalchemy-exasol sqlalchemy-risingwave

- name: add sqlalchemy 2
run: poetry update sqlalchemy
Expand Down
2 changes: 2 additions & 0 deletions ci/schema/risingwave.sql
Original file line number Diff line number Diff line change
Expand Up @@ -175,3 +175,5 @@ INSERT INTO win VALUES
('a', 2, 0),
('a', 3, 1),
('a', 4, 1);

SELECT pg_sleep(20);
8 changes: 5 additions & 3 deletions compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -572,7 +572,7 @@ services:
retries: 20
restart: always
networks:
- risingwave
- risingwave-standalone

risingwave-standalone:
image: ghcr.io/risingwavelabs/risingwave:nightly-20240122
Expand Down Expand Up @@ -631,6 +631,7 @@ services:
- risingwave-minio
volumes:
- "./docker/risingwave/risingwave.toml:/risingwave.toml"
- risingwave-standalone:/data
environment:
RUST_BACKTRACE: "1"
# If ENABLE_TELEMETRY is not set, telemetry will start by default
Expand All @@ -648,7 +649,7 @@ services:
retries: 20
restart: always
networks:
- risingwave
- risingwave-standalone

networks:
impala:
Expand All @@ -666,7 +667,7 @@ networks:
oracle:
exasol:
flink:
risingwave:
risingwave-standalone:

volumes:
broker_var:
Expand All @@ -686,3 +687,4 @@ volumes:
exasol:
impala:
risingwave-minio:
risingwave-standalone:
4 changes: 0 additions & 4 deletions ibis/backends/risingwave/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,6 @@ class TestConf(ServiceBackendTest):
rounding_method = "half_to_even"
service_name = "risingwave-standalone"
deps = "psycopg2", "sqlalchemy"
stateful = False

def preload(self):
pass

@property
def test_files(self) -> Iterable[Path]:
Expand Down

0 comments on commit 30cd17b

Please sign in to comment.