Skip to content

Commit 7684b6f

Browse files
committed
indexcmds.c: reorder function prototypes
... out of an overabundance of neatnikism, perhaps.
1 parent a034f8b commit 7684b6f

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/backend/commands/indexcmds.c

+3-4
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@
6868

6969

7070
/* non-export function prototypes */
71+
static bool CompareOpclassOptions(Datum *opts1, Datum *opts2, int natts);
7172
static void CheckPredicate(Expr *predicate);
7273
static void ComputeIndexAttrs(IndexInfo *indexInfo,
7374
Oid *typeOidP,
@@ -87,13 +88,11 @@ static char *ChooseIndexNameAddition(List *colnames);
8788
static List *ChooseIndexColumnNames(List *indexElems);
8889
static void RangeVarCallbackForReindexIndex(const RangeVar *relation,
8990
Oid relId, Oid oldRelId, void *arg);
90-
static bool ReindexRelationConcurrently(Oid relationOid, int options);
91-
91+
static void reindex_error_callback(void *args);
9292
static void ReindexPartitions(Oid relid, int options, bool isTopLevel);
9393
static void ReindexMultipleInternal(List *relids, int options);
94-
static void reindex_error_callback(void *args);
94+
static bool ReindexRelationConcurrently(Oid relationOid, int options);
9595
static void update_relispartition(Oid relationId, bool newval);
96-
static bool CompareOpclassOptions(Datum *opts1, Datum *opts2, int natts);
9796

9897
/*
9998
* callback argument type for RangeVarCallbackForReindexIndex()

0 commit comments

Comments
 (0)