mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 00:22:29 +00:00
Add tests
This commit is contained in:
parent
696818b340
commit
60488e2391
@ -0,0 +1 @@
|
||||
1
|
@ -0,0 +1,9 @@
|
||||
DROP TABLE IF EXISTS t0;
|
||||
|
||||
CREATE TABLE t0 (c0 Int16, projection h (SELECT min(c0), max(c0), count() GROUP BY -c0)) ENGINE = MergeTree ORDER BY ();
|
||||
|
||||
INSERT INTO t0(c0) VALUES (1);
|
||||
|
||||
SELECT count() FROM t0 GROUP BY gcd(-sign(c0), -c0);
|
||||
|
||||
DROP TABLE t0;
|
Loading…
Reference in New Issue
Block a user