Adam Steele
11/15/2024, 6:47 PM2024-11-13 20:41:12.254608
. When these are displayed in the visualizations, they are showing up as that time in the timezone that is selected without the proper offset applied, e.g. 8:41 PM instead of 2:41 PM (for US central time for example). How do I fix this? Thanks.Michael Ullock
11/15/2024, 8:40 PMMichael Ullock
11/15/2024, 8:42 PMAdam Steele
11/15/2024, 8:45 PMAdam Steele
11/15/2024, 8:46 PMAdam Steele
11/15/2024, 8:46 PMMichael Ullock
11/15/2024, 8:47 PMMichael Ullock
11/15/2024, 8:59 PMDATE
or TIMESTAMP
data types, no time conversion is available.
We recommend configuring the time zone for the organization or workspace, so that you always see relevant data.If the data in your database has a time zone specified in the
TIMESTAMPTZ
data type, the data converts to the time zone of individual users based on their settings.
More details can be found in the above documentationAdam Steele
11/15/2024, 9:07 PMDATE
or TIMESTAMP
data types, no time conversion is available" but I have no idea how to see what data type you are storing it as. I just dragged in a date in the LDM and it doesn't say what type it auto picks (see screenshots for example).Moises Morales
11/18/2024, 2:02 PMMoises Morales
11/18/2024, 2:04 PMMoises Morales
11/18/2024, 2:08 PM$HOST_URL/api/v1/entities/workspaces/$WORKSPACE_ID/workspaceSettings/
Adam Steele
11/19/2024, 6:32 PMtimestamp
...so I casted them to timezonetz
using your SQL dataset feature in the LDM like this for example:
select "completed_at"::timestamptz at time zone 'Etc/UTC' AS completed_at
However, when I do that, there is no longer an option in the visualization builder to pick Hour or Minute (see screenshot). Why would that be? I see times there when I run it in the SQL dataset UI (see screenshot). Also, when I change the timezone in the select to 'America/Chicago' or something then the times change when I click run, so I'm pretty sure my casting is working properly.Adam Steele
11/19/2024, 6:35 PMMoises Morales
11/19/2024, 6:50 PMAdam Steele
11/19/2024, 6:52 PMAdam Steele
11/19/2024, 7:46 PMAdam Steele
11/19/2024, 7:49 PMAdam Steele
11/19/2024, 8:43 PMselect "completed_at"::timestamp at time zone 'UTC' AS completed_at
Adam Steele
11/19/2024, 9:36 PMMoises Morales
11/20/2024, 6:38 PMMoises Morales
11/20/2024, 6:39 PMAdam Steele
11/20/2024, 6:47 PMProductboard
11/20/2024, 6:58 PMMoises Morales
11/20/2024, 7:01 PMAdam Steele
11/20/2024, 7:02 PM