mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
Merge pull request #17541 from ClickHouse/add-test-engine-join-uuid
Add a test for StorageJoin and UUID
This commit is contained in:
commit
5a1ebb5722
@ -0,0 +1 @@
|
||||
00000000-0000-0000-0000-000000000000
|
29
tests/queries/0_stateless/01594_storage_join_uuid.sql
Normal file
29
tests/queries/0_stateless/01594_storage_join_uuid.sql
Normal file
@ -0,0 +1,29 @@
|
||||
-- the test from simPod, https://github.com/ClickHouse/ClickHouse/issues/5608
|
||||
|
||||
DROP TABLE IF EXISTS joint; -- the table name from the original issue.
|
||||
DROP TABLE IF EXISTS t;
|
||||
|
||||
CREATE TABLE IF NOT EXISTS joint
|
||||
(
|
||||
id UUID,
|
||||
value LowCardinality(String)
|
||||
)
|
||||
ENGINE = Join (ANY, LEFT, id);
|
||||
|
||||
CREATE TABLE IF NOT EXISTS t
|
||||
(
|
||||
id UUID,
|
||||
d DateTime
|
||||
)
|
||||
ENGINE = MergeTree
|
||||
PARTITION BY toDate(d)
|
||||
ORDER BY id;
|
||||
|
||||
insert into joint VALUES ('00000000-0000-0000-0000-000000000000', 'yo');
|
||||
insert into t VALUES ('00000000-0000-0000-0000-000000000000', now());
|
||||
|
||||
SELECT id FROM t
|
||||
ANY LEFT JOIN joint ON t.id = joint.id;
|
||||
|
||||
DROP TABLE joint;
|
||||
DROP TABLE t;
|
Loading…
Reference in New Issue
Block a user