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
{{ message }}
This repository has been archived by the owner on Feb 21, 2024. It is now read-only.
Using the latest docker image Molecula Pilosa v3.35.0-1-g3fd29cbb (Apr 4 2023 2:45PM, 3fd29cbb) go1.20.2 I created a simple table with SQL in the UI following the example in the documentation
Running this code
createtabledemo
(_id id, ts timestamp timeunit 'ms');
insert into demo(_id, ts)
values (1, 1695943004481);
-- 1695943004481 is "2023-09-28T23:16:44.481Z" in ms since epochselect*from demo;
Results in the following error json: error calling MarshalJSON for type time.Time: Time.MarshalJSON: year outside of range [0,9999]
When I truncate the timestamp by 1000, it works fine.
Using the latest docker image
Molecula Pilosa v3.35.0-1-g3fd29cbb (Apr 4 2023 2:45PM, 3fd29cbb) go1.20.2
I created a simple table with SQL in the UI following the example in the documentationRunning this code
Results in the following error
json: error calling MarshalJSON for type time.Time: Time.MarshalJSON: year outside of range [0,9999]
When I truncate the timestamp by 1000, it works fine.
The text was updated successfully, but these errors were encountered: