Commit 958f9fb9 authored by Michael Paquier's avatar Michael Paquier

Remove duplicated words in comments

Author: Daniel Gustafsson
Reviewed-by: Vik Fearing
Discussion: https://postgr.es/m/EBC3BFEB-664C-4063-81ED-29F1227DB012@yesql.se
parent ddfc3c14
...@@ -2234,8 +2234,8 @@ ExecInitAgg(Agg *node, EState *estate, int eflags) ...@@ -2234,8 +2234,8 @@ ExecInitAgg(Agg *node, EState *estate, int eflags)
* The output of the tuplesort, and the output from the outer child * The output of the tuplesort, and the output from the outer child
* might not use the same type of slot. In most cases the child will * might not use the same type of slot. In most cases the child will
* be a Sort, and thus return a TTSOpsMinimalTuple type slot - but the * be a Sort, and thus return a TTSOpsMinimalTuple type slot - but the
* input can also be be presorted due an index, in which case it could * input can also be presorted due an index, in which case it could be
* be a different type of slot. * a different type of slot.
* *
* XXX: For efficiency it would be good to instead/additionally * XXX: For efficiency it would be good to instead/additionally
* generate expressions with corresponding settings of outerops* for * generate expressions with corresponding settings of outerops* for
......
...@@ -2517,7 +2517,7 @@ JsonbInitBinary(JsonbValue *jbv, Jsonb *jb) ...@@ -2517,7 +2517,7 @@ JsonbInitBinary(JsonbValue *jbv, Jsonb *jb)
} }
/* /*
* Returns jbv* type of of JsonbValue. Note, it never returns jbvBinary as is. * Returns jbv* type of JsonbValue. Note, it never returns jbvBinary as is.
*/ */
static int static int
JsonbType(JsonbValue *jb) JsonbType(JsonbValue *jb)
......
...@@ -156,7 +156,7 @@ check_for_data_type_usage(ClusterInfo *cluster, const char *typename, ...@@ -156,7 +156,7 @@ check_for_data_type_usage(ClusterInfo *cluster, const char *typename,
" a.atttypid = x.oid ", " a.atttypid = x.oid ",
typename); typename);
/* Ranges came in in 9.2 */ /* Ranges were introduced in 9.2 */
if (GET_MAJOR_VERSION(cluster->major_version) >= 902) if (GET_MAJOR_VERSION(cluster->major_version) >= 902)
appendPQExpBuffer(&querybuf, appendPQExpBuffer(&querybuf,
" UNION ALL " " UNION ALL "
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment