schema-evolution-manager icon indicating copy to clipboard operation
schema-evolution-manager copied to clipboard

sem-apply --set parameter cannot be repeated

Open pelder-lumenix opened this issue 3 years ago • 1 comments

I tried multiple psql parameters in a script:

create role user_ro login password :'ro_pwd';
create role user_rw login password :'rw_pwd';

When I run sem-apply with multiple --set:

sem-apply --url xxx --set ro_pwd=abc --set rw_pwd=def

I get script errors. Running the script directly with psql does not have those errors. On investigation, only one of the variables gets passed to psql. (The last variable wins.)

pelder-lumenix avatar Oct 30 '22 19:10 pelder-lumenix

@mbryzek : Tested your changes for #70. Everything works as I expect. Thank you.

pelder-lumenix avatar Oct 31 '22 18:10 pelder-lumenix

Fixed by #70

pelder-lumenix avatar Jan 26 '23 17:01 pelder-lumenix