From a3994ec6acb27545300ce1e336e4d119d8000ba9 Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C3=81lvaro=20Herrera?= Date: Thu, 26 Jun 2025 18:33:48 +0200 Subject: [PATCH] Fix typo in comment Introduced by c2da1a5d6325 Reported-by: Michael Paquier Discussion: https://postgr.es/m/aFt4qeRwrV-3qNix@paquier.xyz --- contrib/pg_stat_statements/pg_stat_statements.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/contrib/pg_stat_statements/pg_stat_statements.c b/contrib/pg_stat_statements/pg_stat_statements.c index 5597fcaaa05..e7857f81ec0 100644 --- a/contrib/pg_stat_statements/pg_stat_statements.c +++ b/contrib/pg_stat_statements/pg_stat_statements.c @@ -2844,9 +2844,9 @@ generate_normalized_query(JumbleState *jstate, const char *query, /* * If we have an external param at this location, but no lists are * being squashed across the query, then we skip here; this will make - * us print print the characters found in the original query that - * represent the parameter in the next iteration (or after the loop is - * done), which is a bit odd but seems to work okay in most cases. + * us print the characters found in the original query that represent + * the parameter in the next iteration (or after the loop is done), + * which is a bit odd but seems to work okay in most cases. */ if (jstate->clocations[i].extern_param && !jstate->has_squashed_lists) continue; -- 2.39.5