janis_puris
07/09/2023, 6:51 PMtarget-snowflake
is not creating the table with proper NUMBER precision.
For example, `--dump=catalog`'s one of the fields in stream are
"AMT_EXCL_TAX": {
"multipleOf": 0.0001,
"type": [
"null",
"number"
]
},
but in snowflake it is created as
AMT_EXCL_TAX NUMBER(38,0)
while the correct field would be
AMT_EXCL_TAX NUMBER(34, 4)
😞
Any ideas if this and https://meltano.slack.com/archives/C01TCRBBJD7/p1688918685352879 are related?visch
07/09/2023, 10:28 PMjanis_puris
07/10/2023, 7:23 AM