2023-02-03 13:34:18 +00:00
|
|
|
-- Tags: no-parallel-replicas
|
|
|
|
-- Requires investigation (max_bytes_to_read is not respected)
|
|
|
|
|
2019-11-15 03:38:35 +00:00
|
|
|
SET max_bytes_to_read = 600000000;
|
2019-02-14 23:58:50 +00:00
|
|
|
|
|
|
|
SET optimize_move_to_prewhere = 1;
|
2023-07-14 15:23:46 +00:00
|
|
|
SET enable_multiple_prewhere_read_steps = 1;
|
2019-02-14 23:58:50 +00:00
|
|
|
|
2022-03-11 23:31:20 +00:00
|
|
|
SELECT uniq(URL) FROM test.hits WHERE toTimeZone(EventTime, 'Asia/Dubai') >= '2014-03-20 00:00:00' AND toTimeZone(EventTime, 'Asia/Dubai') < '2014-03-21 00:00:00';
|
|
|
|
SELECT uniq(URL) FROM test.hits WHERE toTimeZone(EventTime, 'Asia/Dubai') >= '2014-03-20 00:00:00' AND URL != '' AND toTimeZone(EventTime, 'Asia/Dubai') < '2014-03-21 00:00:00';
|
|
|
|
SELECT uniq(*) FROM test.hits WHERE toTimeZone(EventTime, 'Asia/Dubai') >= '2014-03-20 00:00:00' AND toTimeZone(EventTime, 'Asia/Dubai') < '2014-03-21 00:00:00' AND EventDate = '2014-03-21';
|
|
|
|
WITH toTimeZone(EventTime, 'Asia/Dubai') AS xyz SELECT uniq(*) FROM test.hits WHERE xyz >= '2014-03-20 00:00:00' AND xyz < '2014-03-21 00:00:00' AND EventDate = '2014-03-21';
|
2019-02-14 23:58:50 +00:00
|
|
|
|
|
|
|
SET optimize_move_to_prewhere = 0;
|
2023-07-14 15:23:46 +00:00
|
|
|
SET enable_multiple_prewhere_read_steps = 0;
|
2019-02-14 23:58:50 +00:00
|
|
|
|
2022-03-11 23:31:20 +00:00
|
|
|
SELECT uniq(URL) FROM test.hits WHERE toTimeZone(EventTime, 'Asia/Dubai') >= '2014-03-20 00:00:00' AND toTimeZone(EventTime, 'Asia/Dubai') < '2014-03-21 00:00:00'; -- { serverError 307 }
|
|
|
|
SELECT uniq(URL) FROM test.hits WHERE toTimeZone(EventTime, 'Asia/Dubai') >= '2014-03-20 00:00:00' AND URL != '' AND toTimeZone(EventTime, 'Asia/Dubai') < '2014-03-21 00:00:00'; -- { serverError 307 }
|
2023-07-14 15:23:46 +00:00
|
|
|
SELECT uniq(URL) FROM test.hits PREWHERE toTimeZone(EventTime, 'Asia/Dubai') >= '2014-03-20 00:00:00' AND URL != '' AND toTimeZone(EventTime, 'Asia/Dubai') < '2014-03-21 00:00:00'; -- { serverError 307 }
|