✨ Add support for converting TIMESTAMP WITH LOCAL TIME ZONE
to exasol_mapper
#116
Labels
feature
Product feature
TIMESTAMP WITH LOCAL TIME ZONE
to exasol_mapper
#116
Summary
The datatype mapper provided by pyexasol (
pyexasol.mapper.exasol_mapper
) currently does not supportTIMESTAMP WITH LOCAL TIME ZONE
, which may cause inconvenience to the user. Adding support for this data type would improve the usability of pyexasol.Details
The pyexasol library provides a datatype mapper to convert the Exasol data types to Python data types. However, the current implementation does not support the
TIMESTAMP WITH LOCAL TIME ZONE
data type. This means that when a user tries to fetch data from a column of this type, they will receive a string.Until this is addressed, we suggest creating a custom mapper that adds support for
TIMESTAMP WITH LOCAL TIME ZONE
(see examples).Examples
Current behavior
Custom mapper adding support for
TIMESTAMP WITH LOCAL TIME ZONE
The text was updated successfully, but these errors were encountered: