forked from shaped-ai/target-clickhouse
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from gallejesus/fix-arrays
Fix arrays
- Loading branch information
Showing
6 changed files
with
217 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
version: '3' | ||
|
||
services: | ||
clickhouse-server: | ||
image: "clickhouse/clickhouse-server:22.5.1.2079" | ||
container_name: test-clickhouse-server | ||
environment: | ||
CLICKHOUSE_USER: default | ||
CLICKHOUSE_PASSWORD: | ||
CLICKHOUSE_DB: default | ||
volumes: | ||
- type: bind | ||
source: ./integration-db | ||
target: /docker-entrypoint-initdb.d | ||
ports: | ||
- "127.0.0.1:9000:9000" | ||
- "127.0.0.1:8123:8123" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
CREATE TABLE simple_table ( | ||
id INTEGER, | ||
updated_at DATE, | ||
name VARCHAR | ||
) | ||
ENGINE = MergeTree() | ||
PRIMARY KEY id; | ||
|
||
INSERT INTO simple_table VALUES (1, '2023-10-22 10:00:00', 'test1'); | ||
INSERT INTO simple_table VALUES (2, '2023-10-22 11:00:00', 'test3'); |
Oops, something went wrong.