@@ -29,7 +29,7 @@ typedef struct
29
29
30
30
/*
31
31
* Forms unions of subkeys after page split, but
32
- * uses only tuples aren't in groups ofequalent tuples
32
+ * uses only tuplesthat aren't in groups ofequivalent tuples
33
33
*/
34
34
static void
35
35
gistunionsubkeyvec (GISTSTATE * giststate ,IndexTuple * itvec ,
@@ -200,8 +200,8 @@ do {\
200
200
201
201
/*
202
202
* adjust left and right unions according to splits by previous
203
- * split byfirsts columns. This function is called only in case
204
- * when pickSplit doesn't supportsubspplit .
203
+ * split byfirst columns. This function is called only in case
204
+ * when pickSplit doesn't supportsubsplit .
205
205
*/
206
206
207
207
static void
@@ -503,8 +503,8 @@ gistSplitHalf(GIST_SPLITVEC *v, int len)
503
503
}
504
504
505
505
/*
506
- *trys to split page by attno key, in a case of null
507
- * values moveits to separate page.
506
+ *tries to split page by attno key, in case of null
507
+ * values movethose to separate page.
508
508
*/
509
509
void
510
510
gistSplitByKey (Relation r ,Page page ,IndexTuple * itup ,int len ,GISTSTATE * giststate ,
@@ -531,7 +531,7 @@ gistSplitByKey(Relation r, Page page, IndexTuple *itup, int len, GISTSTATE *gist
531
531
{
532
532
/*
533
533
* Corner case: All keys in attno column are null, we should try to
534
- * split by keys in next column.It all keys in all columns are NULL
534
+ * split by keys in next column.If all keys in all columns are NULL
535
535
* just split page half by half
536
536
*/
537
537
v -> spl_risnull [attno ]= v -> spl_lisnull [attno ]= TRUE;
@@ -582,7 +582,7 @@ gistSplitByKey(Relation r, Page page, IndexTuple *itup, int len, GISTSTATE *gist
582
582
{
583
583
/*
584
584
* simple case: left and right keys for attno column are
585
- *equial
585
+ *equal
586
586
*/
587
587
gistSplitByKey (r ,page ,itup ,len ,giststate ,v ,entryvec ,attno + 1 );
588
588
}