Re: pgsql: Fix precedence problem in new Perl code.

2018-05-04 Thread Mike Blackwell
if that's preferred. If there's interest I could put together a patch for some or all of this. Mike __ *Mike Blackwell | Technical Analyst, Distribution Services/Rollout Management | RRD* 1750 Wallace Ave | St Charles, IL

Re: pgsql: Fix precedence problem in new Perl code.

2018-05-04 Thread Mike Blackwell
In my experience, that would more commonly be written with the lower precedence "or" operator (with or without the param list parens): unlink $temp_name or die "unlink: $temp_name: $!"; __