mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 15:42:02 +00:00
test for #33592
This commit is contained in:
parent
e2df17ef5c
commit
b8171eb755
@ -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