Skip to content

Commit bdb70c1

Browse files
committed
C comment: fix "the the" mentions in C comments
Reported-by: Christoph Dreis Discussion: https://postgr.es/m/007e01d3519e$2734ca10$759e5e30$@freenet.de Author: Christoph Dreis
1 parent bbd3363 commit bdb70c1

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/backend/optimizer/prep/prepunion.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2502,7 +2502,7 @@ build_child_join_sjinfo(PlannerInfo *root, SpecialJoinInfo *parent_sjinfo,
25022502
* Find AppendRelInfo structures for all relations specified by relids.
25032503
*
25042504
* The AppendRelInfos are returned in an array, which can be pfree'd by the
2505-
* caller. *nappinfos is set to the the number of entries in the array.
2505+
* caller. *nappinfos is set to the number of entries in the array.
25062506
*/
25072507
AppendRelInfo **
25082508
find_appinfos_by_relids(PlannerInfo *root, Relids relids, int *nappinfos)

src/test/regress/expected/triggers.out

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1934,7 +1934,7 @@ $$;
19341934
--
19351935
-- Verify behavior of statement triggers on partition hierarchy with
19361936
-- transition tables. Tuples should appear to each trigger in the
1937-
-- format of the the relation the trigger is attached to.
1937+
-- format of the relation the trigger is attached to.
19381938
--
19391939
-- set up a partition hierarchy with some different TupleDescriptors
19401940
create table parent (a text, b int) partition by list (a);

src/test/regress/sql/triggers.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1409,7 +1409,7 @@ $$;
14091409
--
14101410
-- Verify behavior of statement triggers on partition hierarchy with
14111411
-- transition tables. Tuples should appear to each trigger in the
1412-
-- format of the the relation the trigger is attached to.
1412+
-- format of the relation the trigger is attached to.
14131413
--
14141414

14151415
-- set up a partition hierarchy with some different TupleDescriptors

0 commit comments

Comments
 (0)