-
Notifications
You must be signed in to change notification settings - Fork 517
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add clickhouse replicated cluster name setting and integration tests
- Loading branch information
Showing
17 changed files
with
364 additions
and
40 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
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
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
55 changes: 55 additions & 0 deletions
55
internal/testing/integration/testdata/migrations/clickhouse-replicated/00001_a.sql
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,55 @@ | ||
-- +goose Up | ||
CREATE TABLE IF NOT EXISTS trips ON CLUSTER '{cluster}' | ||
( | ||
`trip_id` UInt32, | ||
`vendor_id` Enum8('1' = 1, '2' = 2, '3' = 3, '4' = 4, 'CMT' = 5, 'VTS' = 6, 'DDS' = 7, 'B02512' = 10, 'B02598' = 11, 'B02617' = 12, 'B02682' = 13, 'B02764' = 14, '' = 15), | ||
`pickup_date` Date, | ||
`pickup_datetime` DateTime, | ||
`dropoff_date` Date, | ||
`dropoff_datetime` DateTime, | ||
`store_and_fwd_flag` UInt8, | ||
`rate_code_id` UInt8, | ||
`pickup_longitude` Float64, | ||
`pickup_latitude` Float64, | ||
`dropoff_longitude` Float64, | ||
`dropoff_latitude` Float64, | ||
`passenger_count` UInt8, | ||
`trip_distance` Float64, | ||
`fare_amount` Float32, | ||
`extra` Float32, | ||
`mta_tax` Float32, | ||
`tip_amount` Float32, | ||
`tolls_amount` Float32, | ||
`ehail_fee` Float32, | ||
`improvement_surcharge` Float32, | ||
`total_amount` Float32, | ||
`payment_type` Enum8('UNK' = 0, 'CSH' = 1, 'CRE' = 2, 'NOC' = 3, 'DIS' = 4), | ||
`trip_type` UInt8, | ||
`pickup` FixedString(25), | ||
`dropoff` FixedString(25), | ||
`cab_type` Enum8('yellow' = 1, 'green' = 2, 'uber' = 3), | ||
`pickup_nyct2010_gid` Int8, | ||
`pickup_ctlabel` Float32, | ||
`pickup_borocode` Int8, | ||
`pickup_ct2010` String, | ||
`pickup_boroct2010` FixedString(7), | ||
`pickup_cdeligibil` String, | ||
`pickup_ntacode` FixedString(4), | ||
`pickup_ntaname` String, | ||
`pickup_puma` UInt16, | ||
`dropoff_nyct2010_gid` UInt8, | ||
`dropoff_ctlabel` Float32, | ||
`dropoff_borocode` UInt8, | ||
`dropoff_ct2010` String, | ||
`dropoff_boroct2010` FixedString(7), | ||
`dropoff_cdeligibil` String, | ||
`dropoff_ntacode` FixedString(4), | ||
`dropoff_ntaname` String, | ||
`dropoff_puma` UInt16 | ||
) | ||
ENGINE = ReplicatedMergeTree() | ||
PARTITION BY toYYYYMM(pickup_date) | ||
ORDER BY pickup_datetime; | ||
|
||
-- +goose Down | ||
DROP TABLE IF EXISTS trips ON CLUSTER '{cluster}' SYNC; |
13 changes: 13 additions & 0 deletions
13
internal/testing/integration/testdata/migrations/clickhouse-replicated/00002_b.sql
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,13 @@ | ||
-- +goose Up | ||
CREATE TABLE IF NOT EXISTS clickstream ON CLUSTER '{cluster}' ( | ||
customer_id String, | ||
time_stamp Date, | ||
click_event_type String, | ||
country_code FixedString(2), | ||
source_id UInt64 | ||
) | ||
ENGINE = ReplicatedMergeTree() | ||
ORDER BY (time_stamp); | ||
|
||
-- +goose Down | ||
DROP TABLE IF EXISTS clickstream ON CLUSTER '{cluster}' SYNC; |
8 changes: 8 additions & 0 deletions
8
internal/testing/integration/testdata/migrations/clickhouse-replicated/00003_c.sql
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,8 @@ | ||
-- +goose Up | ||
INSERT INTO clickstream VALUES ('customer1', '2021-10-02', 'add_to_cart', 'US', 568239 ); | ||
|
||
INSERT INTO clickstream (customer_id, time_stamp, click_event_type) VALUES ('customer2', '2021-10-30', 'remove_from_cart' ); | ||
|
||
INSERT INTO clickstream (* EXCEPT(country_code)) VALUES ('customer3', '2021-11-07', 'checkout', 307493 ); | ||
|
||
-- +goose Down |
Oops, something went wrong.