Skip to content
This repository has been archived by the owner on May 17, 2024. It is now read-only.

Contrib improvements + Fixed Test #269

Merged
merged 3 commits into from
Nov 2, 2022
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 CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ The same goes for other technical requests, like missing features, or gaps in th

See [issues](/datafold/data-diff/issues/).

For questions, and non-technical discussions, see [discussions](/datafold/data-diff/discussions).
For questions, and non-technical discussions, see [discussions](https://github.com/datafold/data-diff/discussions).

### Contributing code

Expand Down
10 changes: 6 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: "3.8"

services:
postgres:
container_name: postgresql
container_name: dd-postgresql
image: postgres:14.1-alpine
# work_mem: less tmp files
# maintenance_work_mem: improve table-level op perf
Expand All @@ -25,7 +25,7 @@ services:
- local

mysql:
container_name: mysql
container_name: dd-mysql
image: mysql:oracle
# fsync less aggressively for insertion perf for test setup
command: >
Expand All @@ -52,7 +52,7 @@ services:
- local

clickhouse:
container_name: clickhouse
container_name: dd-clickhouse
image: clickhouse/clickhouse-server:21.12.3.32
restart: always
volumes:
Expand All @@ -76,6 +76,7 @@ services:

# prestodb.dbapi.connect(host="127.0.0.1", user="presto").cursor().execute('SELECT * FROM system.runtime.nodes')
presto:
container_name: dd-presto
build:
context: ./dev
dockerfile: ./Dockerfile.prestosql.340
Expand All @@ -88,6 +89,7 @@ services:
- local

trino:
container_name: dd-trino
image: 'trinodb/trino:389'
hostname: trino
ports:
Expand All @@ -98,7 +100,7 @@ services:
- local

vertica:
container_name: vertica
container_name: dd-vertica
image: vertica/vertica-ce:12.0.0-0
restart: always
volumes:
Expand Down
Loading