Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 958f9fb

Browse files
committed
Remove duplicated words in comments
Author: Daniel Gustafsson Reviewed-by: Vik Fearing Discussion: https://postgr.es/m/EBC3BFEB-664C-4063-81ED-29F1227DB012@yesql.se
1 parent ddfc3c1 commit 958f9fb

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/backend/executor/nodeAgg.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -2234,8 +2234,8 @@ ExecInitAgg(Agg *node, EState *estate, int eflags)
22342234
* The output of the tuplesort, and the output from the outer child
22352235
* might not use the same type of slot. In most cases the child will
22362236
* be a Sort, and thus return a TTSOpsMinimalTuple type slot - but the
2237-
* input can also be be presorted due an index, in which case it could
2238-
* be a different type of slot.
2237+
* input can also be presorted due an index, in which case it could be
2238+
* a different type of slot.
22392239
*
22402240
* XXX: For efficiency it would be good to instead/additionally
22412241
* generate expressions with corresponding settings of outerops* for

src/backend/utils/adt/jsonpath_exec.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -2517,7 +2517,7 @@ JsonbInitBinary(JsonbValue *jbv, Jsonb *jb)
25172517
}
25182518

25192519
/*
2520-
* Returns jbv* type of of JsonbValue. Note, it never returns jbvBinary as is.
2520+
* Returns jbv* type of JsonbValue. Note, it never returns jbvBinary as is.
25212521
*/
25222522
static int
25232523
JsonbType(JsonbValue *jb)

src/bin/pg_upgrade/version.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ check_for_data_type_usage(ClusterInfo *cluster, const char *typename,
156156
" a.atttypid = x.oid ",
157157
typename);
158158

159-
/* Ranges came in in 9.2 */
159+
/* Ranges were introduced in 9.2 */
160160
if (GET_MAJOR_VERSION(cluster->major_version) >= 902)
161161
appendPQExpBuffer(&querybuf,
162162
" UNION ALL "

0 commit comments

Comments
 (0)