Has anybody run into issues with deselects in an e...
# troubleshooting
w
Has anybody run into issues with deselects in an env specific .yml file with postgres?
Copy code
# Env specific file (like cicd)

- name: tap-postgres--rds
  load_schema: test
  select:
  - "!public-customer_addr.*"        
  config:
    start_date: ${N_HOURS_AGO} 
    host: postgres.qa.test.com
    password: ${TAP_POSTGRES__RDS_PW}



#Extractor .yml (meltano.yml)

  - name: tap-postgres--rds
    inherit_from: tap-postgres
    variant: meltanolabs
    pip_url: git+<https://github.com/MeltanoLabs/tap-postgres.git>
    config:
      user: user
      database: test
    select:
    - public-customer_addr.*
    - public-product_lines.*
    - public-product_lines2.*
in the example above I have the selects listed out for the extractor and want to run all of them in prod - but my cicd env I want to exclude some tables. This pattern is working fine for me with sqlserver tap but not postgres
ok - i think its a bug with the tap - added issue here - https://github.com/MeltanoLabs/tap-postgres/issues/253