Re: Fix incorrect order of params in comment

2025-05-09 Thread Michael Paquier
On Fri, May 09, 2025 at 07:21:17PM +0200, Daniel Gustafsson wrote: > -=item $node->log_check($offset, $test_name, %parameters) > +=item $node->log_check($test_name, $offset, %parameters) > > Check contents of server logs. Right, good catch. The internals of the routine use %params instead of %p

Fix incorrect order of params in comment

2025-05-09 Thread Daniel Gustafsson
While writing tests today I noticed that the order of the parameters in the POD docs for log_check() in PostgreSQL::Test::Cluster is wrong, the first parameter is the test name. Will apply the below later today with a backpatch to where 26eaf82e7138 went in. diff --git a/src/test/perl/PostgreSQL/