Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
More duplicate word removal.
authorRobert Haas <rhaas@postgresql.org>
Wed, 2 May 2012 13:27:34 +0000 (09:27 -0400)
committerRobert Haas <rhaas@postgresql.org>
Wed, 2 May 2012 13:28:16 +0000 (09:28 -0400)
contrib/sepgsql/selinux.c
src/backend/access/gist/gistget.c
src/include/catalog/objectaccess.h
src/pl/plpython/plpy_typeio.c

index 0652e294b7f500ce898126bb98838811a0efb29f..baf92b6f6db3b623135a192171c2d30d92d77d88 100644 (file)
@@ -830,7 +830,7 @@ sepgsql_compute_avd(const char *scontext,
  * given security context.
  *
  * scontext: security context of the subject (mostly, peer process).
- * tcontext: security context of the the upper database object.
+ * tcontext: security context of the upper database object.
  * tclass: class code (SEPG_CLASS_*) of the new object in creation
  */
 char *
index 73551eca3f6341132c656061c87aa8d3cc651f92..c790ad6ffb4a655df1c4471f49001a5b8e83a807 100644 (file)
@@ -258,7 +258,7 @@ gistScanPage(IndexScanDesc scan, GISTSearchItem *pageItem, double *myDistances,
    /*
     * Check if we need to follow the rightlink. We need to follow it if the
     * page was concurrently split since we visited the parent (in which case
-    * parentlsn < nsn), or if the the system crashed after a page split but
+    * parentlsn < nsn), or if the system crashed after a page split but
     * before the downlink was inserted into the parent.
     */
    if (!XLogRecPtrIsInvalid(pageItem->data.parentlsn) &&
index 9763280177b81c744c89cb7ff1b8922acaf0dced..a5158e2bc9c1c2be95db3bc26211797c0ca6ee5e 100644 (file)
@@ -15,7 +15,7 @@
  * performing certain actions on a SQL object. This is intended as
  * infrastructure for security or logging pluggins.
  *
- * OAT_POST_CREATE should be invoked just after the the object is created.
+ * OAT_POST_CREATE should be invoked just after the object is created.
  * Typically, this is done after inserting the primary catalog records and
  * associated dependencies.
  *
index c503d2b2dd1576b909c62844ccdd090f880673d2..c5f6c4e5a3e55cc6fe319d5f01f6cb521230497a 100644 (file)
@@ -267,7 +267,7 @@ PLy_output_record_funcs(PLyTypeInfo *arg, TupleDesc desc)
 
    /*
     * it should change is_rowtype to 1, so we won't go through this again
-    * unless the the output record description changes
+    * unless the output record description changes
     */
    Assert(arg->is_rowtype == 1);
 }