Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion compose.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
clickhouse:
image: clickhouse/clickhouse-server:25.9.4.58-alpine
image: clickhouse/clickhouse-server:25.10.1.3832-alpine
ports:
- 8123:8123 # http port
- 9000:9000 # native protocol port
Expand Down
13 changes: 6 additions & 7 deletions docker/postgres/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
FROM postgis/postgis:17-3.5-alpine AS pgvector-builder
RUN apk add --no-cache git build-base clang19 llvm19-dev llvm19
WORKDIR /tmp
RUN git clone --branch v0.8.0 https://github.com/pgvector/pgvector.git
WORKDIR /tmp/pgvector
RUN make && make install
FROM postgis/postgis:17-3.6-alpine AS pgvector-builder
RUN apk add --no-cache git build-base clang19 llvm19
RUN git clone --branch v0.8.1 https://github.com/pgvector/pgvector.git /tmp/pgvector
RUN make -C /tmp/pgvector -j "$(nproc)"
RUN make -C /tmp/pgvector -j "$(nproc)" install

FROM postgis/postgis:17-3.5-alpine
FROM postgis/postgis:17-3.6-alpine
RUN apk add --no-cache postgresql17-plpython3
COPY --from=pgvector-builder /usr/local/lib/postgresql/bitcode/vector.index.bc /usr/local/lib/postgresql/bitcode/vector.index.bc
COPY --from=pgvector-builder /usr/local/lib/postgresql/vector.so /usr/local/lib/postgresql/vector.so
Expand Down
2 changes: 1 addition & 1 deletion ibis/backends/tests/test_generic.py
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ def test_coalesce(con, expr, expected):
assert result == pytest.approx(expected)


@pytest.mark.notimpl(["clickhouse", "druid", "exasol"])
@pytest.mark.notimpl(["druid", "exasol"])
def test_identical_to(backend, alltypes, sorted_df):
sorted_alltypes = alltypes.order_by("id")
df = sorted_df
Expand Down
Loading