Hello!
I'm trying to replicate a table from a tap-postgres to a target-postgres. The target table already exists (meltano didn't create it). The target was created using the exact schema of the source table. For some reason, meltano is issuing some alter table rename commands at the start of it's run and creating a bunch of columns with the date in them (such as id -> id_20220824_1840). I'm guessing this is happening because it thinks that the types of the columns in the target table are incorrect? But that isn't the case. I believe that the tap is just not interpreting the source schema correctly, for example it's reading in id as text, but in reality it's uuid.
Anyone have any experience with an issue like this? I'd prefer if it just errored out rather than try to alter the table. Or ultimately, just read the schema correctly from the source table and recognize that the target schema is a perfect match.
Thanks!