On Wed, Aug 19, 2026 at 12:08:56PM +0200, Jelte Fennema-Nio wrote:
> The three error recovery checks in `test_handle()` used `qr/^|ok$/` to
> look for the `ok` marker column in psql's output. That is an alternation
> of `^` and `ok$`, and `^` matches every string, so the assertions passed
> no matter what psql printed.
Passing by..
Oops, /^|ok$/ with a '|' meaning OR in this context, or match all
strings. That's clearly broken, yes.
Will check later and fix. Thanks for the report.
--
Michael