td query's -o option write query result to the specific path.
However, if -w or --wait is missing, it generates no file even if users give -o option.
Therefore, added message when -o exists and -w isn't exist.
For instance,
% bundle exec td query -d kasai_test 'select * from customers limit 10' -f csv -o ~/test.csv
Job 974621778 is queued.
Use 'td job:show 974621778' to show the status.
The output file won't be generated. Require `-w` or `--wait` option in addition.
td query
's-o
option write query result to the specific path. However, if-w
or--wait
is missing, it generates no file even if users give-o
option.Therefore, added message when
-o
exists and-w
isn't exist.For instance,