]> git.ipfire.org Git - thirdparty/postgresql.git/commitdiff
Fix typo in comment
authorÁlvaro Herrera <alvherre@kurilemu.de>
Thu, 26 Jun 2025 16:33:48 +0000 (18:33 +0200)
committerÁlvaro Herrera <alvherre@kurilemu.de>
Thu, 26 Jun 2025 16:33:48 +0000 (18:33 +0200)
Introduced by c2da1a5d6325

Reported-by: Michael Paquier <michael@paquier.xyz>
Discussion: https://postgr.es/m/aFt4qeRwrV-3qNix@paquier.xyz

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;