choudary kukkapalli
04/19/2024, 3:11 AMhow can i make this column created with timestamp datatype
in target table, with the below yml its getting created as string in this format YYYY-MM-DDTHH24;MI:SS.ssss
mappers:
- name: meltano-map-transformer
variant: meltano
pip_url: git+<https://github.com/MeltanoLabs/meltano-map-transform.git>
mappings:
- name: table_mapping
config:
stream_maps:
dbo-cust:
__alias__: cust_v1
load_date: datetime.datetime.now()
dylan_just
04/19/2024, 4:04 AMdylan_just
04/19/2024, 4:05 AMdylan_just
04/19/2024, 4:05 AMSchema detection capabilities are limited
Schema detection currently relies on somewhat naive static text parsing. The workaround for the user is fairly trivial - which is to send hints by wrapping the entire expression in str(), float(), int(), etc. While this is perhaps not optimal, it meets our core requirement for static type evaluation with minimal config complexity.
dylan_just
04/19/2024, 4:05 AMchoudary kukkapalli
04/22/2024, 7:28 PM