mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 16:42:05 +00:00
Fix a couple of tests
This commit is contained in:
parent
5460035176
commit
7a157cb2b6
@ -4,7 +4,7 @@ CREATE TABLE tdm (x DateTime('Europe/Moscow')) ENGINE = MergeTree ORDER BY x SET
|
|||||||
INSERT INTO tdm VALUES (now());
|
INSERT INTO tdm VALUES (now());
|
||||||
SELECT count(x) FROM tdm WHERE toDate(x) < today() SETTINGS max_rows_to_read = 1;
|
SELECT count(x) FROM tdm WHERE toDate(x) < today() SETTINGS max_rows_to_read = 1;
|
||||||
|
|
||||||
SELECT toDate(-1), toDate(10000000000000), toDate(100), toDate(65536, 'UTC'), toDate(65535);
|
SELECT toDate(-1), toDate(10000000000000, 'Europe/Moscow'), toDate(100), toDate(65536, 'UTC'), toDate(65535, 'Europe/Moscow');
|
||||||
SELECT toDateTime(-1, 'Europe/Moscow'), toDateTime(10000000000000, 'Europe/Moscow'), toDateTime(1000, 'Europe/Moscow');
|
SELECT toDateTime(-1, 'Europe/Moscow'), toDateTime(10000000000000, 'Europe/Moscow'), toDateTime(1000, 'Europe/Moscow');
|
||||||
|
|
||||||
CREATE TABLE tdm2 (timestamp UInt32) ENGINE = MergeTree ORDER BY timestamp SETTINGS index_granularity = 1;
|
CREATE TABLE tdm2 (timestamp UInt32) ENGINE = MergeTree ORDER BY timestamp SETTINGS index_granularity = 1;
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
drop table if exists replacing;
|
drop table if exists replacing;
|
||||||
create table replacing( `A` Int64, `D` DateTime64(9), `S` String) ENGINE = ReplacingMergeTree(D) ORDER BY A;
|
create table replacing( `A` Int64, `D` DateTime64(9, 'Europe/Moscow'), `S` String) ENGINE = ReplacingMergeTree(D) ORDER BY A;
|
||||||
|
|
||||||
insert into replacing values (1,'1970-01-01 08:25:46.300800000','a');
|
insert into replacing values (1,'1970-01-01 08:25:46.300800000','a');
|
||||||
insert into replacing values (2,'1970-01-01 08:25:46.300800002','b');
|
insert into replacing values (2,'1970-01-01 08:25:46.300800002','b');
|
||||||
|
Loading…
Reference in New Issue
Block a user