Commit e01e66f8 authored by Robert Haas's avatar Robert Haas

More duplicate word removal.

parent f291ccd4
...@@ -830,7 +830,7 @@ sepgsql_compute_avd(const char *scontext, ...@@ -830,7 +830,7 @@ sepgsql_compute_avd(const char *scontext,
* given security context. * given security context.
* *
* scontext: security context of the subject (mostly, peer process). * 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 * tclass: class code (SEPG_CLASS_*) of the new object in creation
*/ */
char * char *
......
...@@ -258,7 +258,7 @@ gistScanPage(IndexScanDesc scan, GISTSearchItem *pageItem, double *myDistances, ...@@ -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 * 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 * 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. * before the downlink was inserted into the parent.
*/ */
if (!XLogRecPtrIsInvalid(pageItem->data.parentlsn) && if (!XLogRecPtrIsInvalid(pageItem->data.parentlsn) &&
......
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
* performing certain actions on a SQL object. This is intended as * performing certain actions on a SQL object. This is intended as
* infrastructure for security or logging pluggins. * 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 * Typically, this is done after inserting the primary catalog records and
* associated dependencies. * associated dependencies.
* *
......
...@@ -267,7 +267,7 @@ PLy_output_record_funcs(PLyTypeInfo *arg, TupleDesc desc) ...@@ -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 * 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); Assert(arg->is_rowtype == 1);
} }
......
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