mirror of
https://github.com/postgres/postgres.git
synced 2025-11-19 13:42:17 +03:00
Fix typos in comments and in one isolation test.
Dagfinn Ilmari Mannsåker, reviewed by Shubham Khanna. Some subtractions by me. Discussion: http://postgr.es/m/87le9fmi01.fsf@wibble.ilmari.org
This commit is contained in:
@@ -93,7 +93,7 @@ static void readtup_datum(Tuplesortstate *state, SortTuple *stup,
|
||||
static void freestate_cluster(Tuplesortstate *state);
|
||||
|
||||
/*
|
||||
* Data struture pointed by "TuplesortPublic.arg" for the CLUSTER case. Set by
|
||||
* Data structure pointed by "TuplesortPublic.arg" for the CLUSTER case. Set by
|
||||
* the tuplesort_begin_cluster.
|
||||
*/
|
||||
typedef struct
|
||||
@@ -105,7 +105,7 @@ typedef struct
|
||||
} TuplesortClusterArg;
|
||||
|
||||
/*
|
||||
* Data struture pointed by "TuplesortPublic.arg" for the IndexTuple case.
|
||||
* Data structure pointed by "TuplesortPublic.arg" for the IndexTuple case.
|
||||
* Set by tuplesort_begin_index_xxx and used only by the IndexTuple routines.
|
||||
*/
|
||||
typedef struct
|
||||
@@ -115,7 +115,7 @@ typedef struct
|
||||
} TuplesortIndexArg;
|
||||
|
||||
/*
|
||||
* Data struture pointed by "TuplesortPublic.arg" for the index_btree subcase.
|
||||
* Data structure pointed by "TuplesortPublic.arg" for the index_btree subcase.
|
||||
*/
|
||||
typedef struct
|
||||
{
|
||||
@@ -126,7 +126,7 @@ typedef struct
|
||||
} TuplesortIndexBTreeArg;
|
||||
|
||||
/*
|
||||
* Data struture pointed by "TuplesortPublic.arg" for the index_hash subcase.
|
||||
* Data structure pointed by "TuplesortPublic.arg" for the index_hash subcase.
|
||||
*/
|
||||
typedef struct
|
||||
{
|
||||
@@ -138,7 +138,7 @@ typedef struct
|
||||
} TuplesortIndexHashArg;
|
||||
|
||||
/*
|
||||
* Data struture pointed by "TuplesortPublic.arg" for the Datum case.
|
||||
* Data structure pointed by "TuplesortPublic.arg" for the Datum case.
|
||||
* Set by tuplesort_begin_datum and used only by the DatumTuple routines.
|
||||
*/
|
||||
typedef struct
|
||||
|
||||
Reference in New Issue
Block a user