mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
Add a test
This commit is contained in:
parent
a30f63802e
commit
6d9e7f98a1
@ -0,0 +1,2 @@
|
||||
|
||||
0 0
|
2
tests/queries/0_stateless/02932_non_ready_set_stuck.sql
Normal file
2
tests/queries/0_stateless/02932_non_ready_set_stuck.sql
Normal file
@ -0,0 +1,2 @@
|
||||
CREATE TABLE tab (item_id UInt64, price_sold Nullable(Float32), date Date) ENGINE = MergeTree ORDER BY item_id;
|
||||
SELECT * FROM (SELECT item_id FROM tab GROUP BY item_id WITH TOTALS ORDER BY '922337203.6854775806' IN (SELECT NULL)) AS l RIGHT JOIN (SELECT item_id FROM tab) AS r ON l.item_id = r.item_id WHERE NULL;
|
Loading…
Reference in New Issue
Block a user