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
Here I am getting expected results, but if I do not add "updateAt","createdAt" and only add to_timestamp conversations, then I am getting NULL for all results,
select to_timestamp("updateAt"/1000) ,
to_timestamp("createdAt"/1000),
to_timestamp(COALESCE("updateAt","createdAt")/1000)
from subscriptions_fdw where _id = '57a962f80e2e27d424cda3f3';
to_timestamp | to_timestamp | to_timestamp
--------------+--------------+-----------+--------------
| |
any help how to fix this will be really appreciated.
The text was updated successfully, but these errors were encountered:
We have fixed similar issues (#133) which resolved this issue as well.
Kind request to recheck at your end with latest HEAD before closing the same.
Please feel free to post an issue, if any.
The issue #162 is different issue and not related to this one.
I have 2 columns inside my mongo which store dates in milliseconds,
createdAt double precision
updateAt double precision
when I try to extract year from it, I am getting below results
Here I am getting expected results, but if I do not add "updateAt","createdAt" and only add to_timestamp conversations, then I am getting NULL for all results,
any help how to fix this will be really appreciated.
The text was updated successfully, but these errors were encountered: