update test

This commit is contained in:
CurtizJ 2018-08-30 14:48:58 +03:00
parent 764aa70d04
commit c818683ce7
2 changed files with 7 additions and 7 deletions

View File

@ -1,5 +1 @@
retentionMerge
retentionState
retentionIf
retentionNull
retentionForEach
1

View File

@ -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;