diff options
author | Daniel Gustafsson <dgustafsson@postgresql.org> | 2025-05-13 07:29:14 -0400 |
---|---|---|
committer | Daniel Gustafsson <dgustafsson@postgresql.org> | 2025-05-13 07:29:14 -0400 |
commit | 7f1da18d679e125eb454ce31fdd2b69d4da32d68 (patch) | |
tree | e212f7685935f41152ba5e60a2004c0c3ac78327 | |
parent | d2d3cd056dc451f8a7dcd343c9e44a901d177a25 (diff) |
Fix order of parameters in POD documentation
The documentation for log_check() had the parameters in the wrong
order. Also while there, rename %parameters to %params to better
documentation for similar functions which use %params. Backpatch
down to v14 where this was introduced.
Author: Daniel Gustafsson <daniel@yesql.se>
Reviewed-by: Michael Paquier <michael@paquier.xyz>
Discussion: https://postgr.es/m/9F503B5-32F2-45D7-A0AE-952879AD65F1@yesql.se
Backpatch-through: 14
-rw-r--r-- | src/test/perl/PostgreSQL/Test/Cluster.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/perl/PostgreSQL/Test/Cluster.pm b/src/test/perl/PostgreSQL/Test/Cluster.pm index c70bde9fb31..c7c74d347a6 100644 --- a/src/test/perl/PostgreSQL/Test/Cluster.pm +++ b/src/test/perl/PostgreSQL/Test/Cluster.pm @@ -2478,7 +2478,7 @@ sub issues_sql_like =pod -=item $node->log_check($offset, $test_name, %parameters) +=item $node->log_check($test_name, $offset, %params) Check contents of server logs. |