vsql exit status for "No such file or directory"
Please add non zero exit status for vsql if specified file is not exists
$ vsql -f nonexisting.sql && echo OK || echo FAIL nonexisting.sql: No such file or directory OK
Same problem with included files
$ vsql -a -f error.sql && echo OK || echo FAIL \set ON_ERROR_STOP on \i nonexisting.sql vsql:error.sql:2: nonexisting.sql: No such file or directory select 2; ?column? ---------- 2 (1 row) OK
vsql continues execution without stopping
0
Answers
Maybe check if the file exists prior to running vsql?
Example:
Process must return correct exit code. All programs do that.
Sorry for some toxic in my opinion )
I like your product. You made a lot of cool things in Vertica DB.
Thanks for support and continuous development!