ananya
04/11/2022, 12:53 PMpostgres
(pipelinewise-tap-postgres) and load it into redshift
(pipelinewise-target-redshift) where we want to change the data type of a field from decimal
to bigint
. We tried making changes in our Meltano.yml file but it is not working. Certainly, we are doing something wrong. 😐
config:
schema:
public-amounts:
amount:
type: ["bigint"]
Any help would be appreciated 🙂thomas_briggs
04/11/2022, 1:46 PMschema
item goes at the same level as the config
item, not under it. Did you add that directly to meltano.yml or did you add it using the command line? If you added it directly i would try adding it via the command line to make sure the formatting is correct.ananya
04/11/2022, 3:03 PMthomas_briggs
04/11/2022, 3:12 PMthomas_briggs
04/11/2022, 3:13 PMananya
04/11/2022, 3:14 PMthomas_briggs
04/11/2022, 3:14 PMananya
04/11/2022, 3:26 PMschema:
some_stream_id:
created_at:
type: ["string", "null"]
format: date-time
what does some_stream_id
should be?thomas_briggs
04/11/2022, 3:40 PMananya
04/11/2022, 4:12 PM