mirror of
https://github.com/apache/superset.git
synced 2026-04-23 01:55:09 +00:00
A bug in to_dict(orient="records") in pandas/core/frame.py prevents datetimes with time zones to be worked with. This works around the issue in superset by re-implementing the logic of pandas in the correct way. Until pandas fixes the issue this code should stay. https://github.com/pandas-dev/pandas/issues/18372 This closes #1929