mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
update test
This commit is contained in:
parent
764aa70d04
commit
c818683ce7
@ -1,5 +1 @@
|
||||
retentionMerge
|
||||
retentionState
|
||||
retentionIf
|
||||
retentionNull
|
||||
retentionForEach
|
||||
1
|
||||
|
@ -1,2 +1,6 @@
|
||||
SELECT concat(func.name, comb.name) FROM system.functions AS func CROSS JOIN system.aggregate_function_combinators AS comb WHERE func.is_aggregate LIMIT 5;
|
||||
|
||||
DROP TABLE IF EXISTS where_qualified;
|
||||
CREATE TABLE where_qualified(a UInt32, b UInt8) ENGINE = Memory;
|
||||
INSERT INTO where_qualified VALUES(1, 1);
|
||||
INSERT INTO where_qualified VALUES(2, 0);
|
||||
SELECT a from where_qualified WHERE where_qualified.b;
|
||||
DROP TABLE where_qualified;
|
||||
|
Loading…
Reference in New Issue
Block a user