You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Support (EXPLAIN SELECT ...) as a subquery (ported from clickhouse #40630) (#5857) (#826)
* Support (EXPLAIN SELECT ...) as a subquery (ported from clickhouse)
* minor adjustments and changes
* change stateless test file to pass the tests
* adjust format and add extra info
* small adjustments of format
CREATE STREAM t1 ( a uint64 ) ASSELECTnumberAS a,now64() as _tp_time FROMsystem.numbersLIMIT10000;
19
+
SELECT*FROM (SELECT sleep(3) AS n) AS a JOIN (SELECT1+ sleep(3) AS f) AS b ONa.n==b.f; --- sleep to make sure that the stream t1 finishes being created and inserted into
20
+
SELECT rows >1000FROM (EXPLAIN ESTIMATE SELECTsum(a) FROM table(t1));
21
+
SELECTcount() ==1FROM (EXPLAIN ESTIMATE SELECTsum(a) FROM table(t1));
0 commit comments