Pgbelt is a CLI tool used to manage Postgres data migrations from beginning to end, for a single database or a fleet, leveraging pglogical replication.
Apache License 2.0
18
stars
5
forks
source link
`dump-tables` and `load-tables` `--tables` flag does not work #590
When running either of those commands with the --tables flag, the tables get passed into the function as a list of strings (as per the function signature), but the code was previously written with the tables being passed as a comma separated list.
Please update those functions to support the list of strings when --tables is specified at the command-line.
When running either of those commands with the
--tables
flag, the tables get passed into the function as a list of strings (as per the function signature), but the code was previously written with the tables being passed as a comma separated list.Please update those functions to support the list of strings when
--tables
is specified at the command-line.