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
DROP TABLE IF EXISTS default.test_interval_64;
CREATE TABLE IF NOT EXISTS default.test_interval_64
(
d DateTime64,
x UInt32
) ENGINE = MergeTree() ORDER BY (d);
INSERT INTO default.test_interval_64(d,x) SELECT toDateTime(now()-(number*10)) AS d, rand() AS x FROM numbers(1000);
And I can't specify Datetime64 Field but I can specify everything else
The text was updated successfully, but these errors were encountered:
I created table with DateTime64
And I can't specify
Datetime64 Field
but I can specify everything elseThe text was updated successfully, but these errors were encountered: