Open bittner opened 3 weeks ago
Hi @bittner,
thanks for the report. Can you tell me what data type is specified in the column definition of "CREATED_TIMESTAMP"?
Thanks and Regards Reto
Can you tell me what data type is specified in the column definition of "CREATED_TIMESTAMP"?
On the Oracle database, the data type is TIMESTAMP(6)
.
When you create a dashboard to display content of a table with a TIMESTAMP column in your Oracle database, EMP returns JSON code from the database. Unfortunately, EMP can't render those values as the widgets on the frontend appear to expect Unix epoch time milliseconds.
Problem Example
yields, e.g.
Current Workaround
We can, of course, convert the timestamp to Unix epoch time millis, but that's tedious (and brings its own set of problems), e.g.
yields, e.g.
Expected Behavior
EMP should yield Unix epoch time milliseconds for TIMESTAMP fields just like it does for DATE fields.