mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 08:32:02 +00:00
One more test
This commit is contained in:
parent
c2c1d97da2
commit
ab6798addd
2
tests/queries/0_stateless/01637_nullable_fuzz3.reference
Normal file
2
tests/queries/0_stateless/01637_nullable_fuzz3.reference
Normal file
@ -0,0 +1,2 @@
|
||||
|
||||
0
|
4
tests/queries/0_stateless/01637_nullable_fuzz3.sql
Normal file
4
tests/queries/0_stateless/01637_nullable_fuzz3.sql
Normal file
@ -0,0 +1,4 @@
|
||||
DROP TABLE IF EXISTS t;
|
||||
CREATE TABLE t (`item_id` UInt64, `price_sold` Float32, `date` Date) ENGINE = MergeTree ORDER BY item_id;
|
||||
SELECT item_id FROM (SELECT item_id FROM t GROUP BY item_id WITH TOTALS) AS l FULL OUTER JOIN (SELECT item_id FROM t GROUP BY item_id WITH TOTALS) AS r USING (item_id);
|
||||
DROP TABLE t;
|
Loading…
Reference in New Issue
Block a user