Fix typo in comment
authorÁlvaro Herrera <[email protected]>
Thu, 26 Jun 2025 16:33:48 +0000 (18:33 +0200)
committerÁlvaro Herrera <[email protected]>
Thu, 26 Jun 2025 16:33:48 +0000 (18:33 +0200)
Introduced by c2da1a5d6325

Reported-by: Michael Paquier <[email protected]>
Discussion: https://postgr.es/m/[email protected]

contrib/pg_stat_statements/pg_stat_statements.c

index 5597fcaaa053d9f6d15bf1b7ea76b4119b95e7c0..e7857f81ec0576a0a0641f992ab787692d22482b 100644 (file)
@@ -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;