]> granicus.if.org Git - postgresql/commitdiff
Fix duplicated words in comments
authorMichael Paquier <michael@paquier.xyz>
Tue, 14 May 2019 00:37:35 +0000 (09:37 +0900)
committerMichael Paquier <michael@paquier.xyz>
Tue, 14 May 2019 00:37:35 +0000 (09:37 +0900)
Author: Stephen Amell
Discussion: https://postgr.es/m/539fa271-21b3-777e-a468-d96cffe9c768@gmail.com

src/backend/executor/execExpr.c
src/backend/replication/logical/reorderbuffer.c
src/include/c.h
src/include/jit/llvmjit_emit.h
src/include/nodes/execnodes.h
src/include/replication/logical.h

index 0fb31f5c3d395be5416d601b15d7256af262212a..0a7b2b8f477d240481ea7143bb5850227197b83d 100644 (file)
@@ -2361,7 +2361,7 @@ get_last_attnums_walker(Node *node, LastAttnumInfo *info)
  * Compute additional information for EEOP_*_FETCHSOME ops.
  *
  * The goal is to determine whether a slot is 'fixed', that is, every
- * evaluation of the the expression will have the same type of slot, with an
+ * evaluation of the expression will have the same type of slot, with an
  * equivalent descriptor.
  */
 static void
index 2cfdf1c9ac9a6a7ff43d4e3a1b6a846944cbe973..65f86ad73dbf74c96af0dc22c208eb2387ad69ff 100644 (file)
@@ -1533,7 +1533,7 @@ ReorderBufferCommit(ReorderBuffer *rb, TransactionId xid,
                                        /*
                                         * Mapped catalog tuple without data, emitted while
                                         * catalog table was in the process of being rewritten. We
-                                        * can fail to look up the relfilenode, because the the
+                                        * can fail to look up the relfilenode, because the
                                         * relmapper has no "historic" view, in contrast to normal
                                         * the normal catalog during decoding. Thus repeated
                                         * rewrites can cause a lookup failure. That's OK because
index 33c95181952735e6b78c94dca67df913ebe9c470..0f89c0224d6cb76d22bd3553681d296a7c3f2969 100644 (file)
@@ -1129,7 +1129,7 @@ typedef union PGAlignedXLogBlock
  * Please note IT IS NOT SAFE to cast constness away if the result will ever
  * be modified (it would be undefined behaviour). Doing so anyway can cause
  * compiler misoptimizations or runtime crashes (modifying readonly memory).
- * It is only safe to use when the the result will not be modified, but API
+ * It is only safe to use when the result will not be modified, but API
  * design or language restrictions prevent you from declaring that
  * (e.g. because a function returns both const and non-const variables).
  *
index 9569da6fbf1bf67e1278ac81da889ecbc8e33679..71a8625efe4542aea5f36d1b5c4efeaffa0bd316 100644 (file)
@@ -218,7 +218,7 @@ l_mcxt_switch(LLVMModuleRef mod, LLVMBuilderRef b, LLVMValueRef nc)
 }
 
 /*
- * Return pointer to the the argno'th argument nullness.
+ * Return pointer to the argno'th argument nullness.
  */
 static inline LLVMValueRef
 l_funcnullp(LLVMBuilderRef b, LLVMValueRef v_fcinfo, size_t argno)
@@ -236,7 +236,7 @@ l_funcnullp(LLVMBuilderRef b, LLVMValueRef v_fcinfo, size_t argno)
 }
 
 /*
- * Return pointer to the the argno'th argument datum.
+ * Return pointer to the argno'th argument datum.
  */
 static inline LLVMValueRef
 l_funcvaluep(LLVMBuilderRef b, LLVMValueRef v_fcinfo, size_t argno)
index ff3328752e725035942e6631f3c6893f835b7334..4b1635eb8bbcdf70ea554f356f9a3c40bc7af7a2 100644 (file)
@@ -593,7 +593,7 @@ typedef struct EState
         * and with which options.  es_jit is created on-demand when JITing is
         * performed.
         *
-        * es_jit_combined_instr is the the combined, on demand allocated,
+        * es_jit_combined_instr is the combined, on demand allocated,
         * instrumentation from all workers. The leader's instrumentation is kept
         * separate, and is combined on demand by ExplainPrintJITSummary().
         */
index 0a2a63a48c8034c4a13841b5ec15eaf9a8a30c1e..0daa38cb895fe527850041615fe6721df6f83034 100644 (file)
@@ -47,7 +47,7 @@ typedef struct LogicalDecodingContext
 
        /*
         * Marks the logical decoding context as fast forward decoding one. Such a
-        * context does not have plugin loaded so most of the the following
+        * context does not have plugin loaded so most of the following
         * properties are unused.
         */
        bool            fast_forward;