mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 09:32:06 +00:00
Merge pull request #33658 from den-crane/tests/issue_33592
test for #33592
This commit is contained in:
commit
998b330507
@ -0,0 +1,6 @@
|
|||||||
|
1970-01-01
|
||||||
|
1970-01-01
|
||||||
|
1970-01-01
|
||||||
|
1970-01-04
|
||||||
|
1
|
||||||
|
1
|
@ -0,0 +1,17 @@
|
|||||||
|
SELECT toStartOfWeek(toDateTime('1970-01-01 00:00:00', 'UTC'));
|
||||||
|
SELECT toStartOfWeek(toDateTime('1970-01-01 00:00:00', 'Europe/Moscow'));
|
||||||
|
SELECT toStartOfWeek(toDateTime('1970-01-01 00:00:00', 'Canada/Atlantic'));
|
||||||
|
SELECT toStartOfWeek(toDateTime('1970-01-04 00:00:00'));
|
||||||
|
|
||||||
|
|
||||||
|
DROP TABLE IF EXISTS t02176;
|
||||||
|
CREATE TABLE t02176(timestamp DateTime) ENGINE = MergeTree
|
||||||
|
PARTITION BY toStartOfWeek(timestamp)
|
||||||
|
ORDER BY tuple();
|
||||||
|
|
||||||
|
INSERT INTO t02176 VALUES (1559952000);
|
||||||
|
|
||||||
|
SELECT count() FROM t02176 WHERE timestamp >= toDateTime('1970-01-01 00:00:00');
|
||||||
|
SELECT count() FROM t02176 WHERE identity(timestamp) >= toDateTime('1970-01-01 00:00:00');
|
||||||
|
|
||||||
|
DROP TABLE t02176;
|
Loading…
Reference in New Issue
Block a user