I am trying to use Meltano for the first time (using Docker image 1.105.0) and seem to have run into an issue. I am extracting from one PostgreSQL database and inserting into another, attempting to use schema mapping. The data is loading into the target database but getting an error. It seems as if Meltano is trying to create an index on a column that doesn't exist and the traceback starts right after.
CREATE INDEX IF NOT EXISTS i_account_I on dl_salesforce.account (I);
I assume it is an issue with my config file but not sure where.